Skip to content

Commit 13a0f13

Browse files
committed
Disable Forge 1.20.1 for now, it's been too painful to support.
1 parent 1aa08f8 commit 13a0f13

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

fabric/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ dependencies {
6060
modImplementation("me.shedaniel.cloth:cloth-config-fabric:${common.mod.dep("cloth_config")}")
6161

6262
commonBundle(project(common.path, "namedElements")) { isTransitive = false }
63-
shadowBundle(project(common.path, "transformProductionFabric")) { isTransitive = false }
63+
shadowBundle(project(common.path)) { isTransitive = false }
6464

6565
modImplementation("xyz.bluspring.modernnetworking:modernnetworking-fabric:${common.mod.dep("modernnetworking")}+${common.mod.dep("modernnetworking_mc")}")!!
6666

forge/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ configurations {
5656
}
5757

5858
mixin {
59-
add(sourceSets.main.get(), "mixins.unitytranslate.refmap.json")
6059
config("unitytranslate.mixins.json")
60+
add(sourceSets.main.get(), "mixins.unitytranslate.refmap.json")
6161
}
6262

6363
repositories {
@@ -71,7 +71,7 @@ dependencies {
7171
modImplementation("me.shedaniel.cloth:cloth-config-forge:${common.mod.dep("cloth_config")}")
7272

7373
commonBundle(project(common.path, "namedElements")) { isTransitive = false }
74-
shadowBundle(project(common.path, "transformProductionForge")) { isTransitive = false }
74+
shadowBundle(project(common.path, "namedElements")) { isTransitive = false }
7575

7676
modImplementation("dev.nyon:KotlinLangForge:${common.mod.dep("kotlinlangforge")}-k${mod.dep("kotlin")}-${common.mod.dep("kotlinlangforge_loader")}+forge")
7777
modImplementation("xyz.bluspring.modernnetworking:modernnetworking-forge:${common.mod.dep("modernnetworking")}+${common.mod.dep("modernnetworking_mc")}")!!

neoforge/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ dependencies {
6464
api("me.shedaniel.cloth:cloth-config-neoforge:${common.mod.dep("cloth_config")}")
6565

6666
commonBundle(project(common.path, "namedElements")) { isTransitive = false }
67-
// shadowBundle(project(common.path, "transformProductionNeoForge")) { isTransitive = false }
67+
shadowBundle(project(common.path, "namedElements")) { isTransitive = false }
6868

6969
api("dev.nyon:KotlinLangForge:${common.mod.dep("kotlinlangforge")}-k${mod.dep("kotlin")}-${common.mod.dep("kotlinlangforge_loader")}+neoforge")
7070
api("xyz.bluspring.modernnetworking:modernnetworking-neoforge:${common.mod.dep("modernnetworking")}+${common.mod.dep("modernnetworking_mc")}")!!

settings.gradle.kts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,11 @@ stonecutter {
3131
vcsVersion = "1.20.1"
3232

3333
branch("fabric")
34-
branch("forge") {
35-
versions(versions.filterIndexed { i, _ -> i <= versions.indexOf("1.20.1") })
36-
}
34+
// TODO: until someone figures out MDG Legacy + mixin in a multi-loader setup, this is what we're going to settle with.
35+
// Or until Architectury Loom updates to 1.14, though idk.
36+
// branch("forge") {
37+
// versions(versions.filterIndexed { i, _ -> i <= versions.indexOf("1.20.1") })
38+
// }
3739
branch("neoforge") {
3840
versions(versions.filterIndexed { i, _ -> i >= versions.indexOf("1.21.1") })
3941
}

0 commit comments

Comments
 (0)