Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
TexBlock committed Feb 7, 2024
1 parent c5c87d3 commit f8112d0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 2 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ plugins {
java
id("architectury-plugin") version "3.4-SNAPSHOT"
id("dev.architectury.loom") version "1.4-SNAPSHOT" apply false
id("me.shedaniel.unified-publishing") version "0.1.+" apply false
kotlin("jvm") version "1.9.22" apply false
}

Expand All @@ -11,6 +12,7 @@ architectury {

subprojects {
apply(plugin = "dev.architectury.loom")
apply(plugin = "me.shedaniel.unified-publishing")

val loom = project.extensions.getByName<net.fabricmc.loom.api.LoomGradleExtensionAPI>("loom")

Expand Down
1 change: 0 additions & 1 deletion forge/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ loom {
convertAccessWideners.set(true)
extraAccessWideners.add(loom.accessWidenerPath.get().asFile.name)

//mixinConfig("ingameime.mixins.json")
mixinConfig("ingameime.forge.mixins.json")
}
}
Expand Down
6 changes: 3 additions & 3 deletions forge/src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
modLoader = "kotlinforforge"
loaderVersion = "[1.6,1.11.0),[1.11.1,)"
loaderVersion = "*"
license = "LGPL-3.0"

[[mods]]
Expand All @@ -26,13 +26,13 @@ side = "CLIENT"
[[dependencies.ingameime]]
modId = "architectury"
mandatory = true
versionRange = "[8,)"
versionRange = "*"
ordering = "NONE"
side = "CLIENT"

[[dependencies.ingameime]]
modId = "cloth_config"
mandatory = true
versionRange = "[11,)"
versionRange = "*"
ordering = "AFTER"
side = "CLIENT"

0 comments on commit f8112d0

Please sign in to comment.