File tree Expand file tree Collapse file tree 4 files changed +9
-7
lines changed
Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -56,8 +56,8 @@ configurations {
5656}
5757
5858mixin {
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
6363repositories {
@@ -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" )} " )!!
Original file line number Diff line number Diff 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" )} " )!!
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments