Skip to content

Commit fe2d58f

Browse files
committed
don't include mixinextras when the fabric loader already has it
notes: mixinextras was introduced in fabric loader 0.15.1; mc1.20.5 requires fabric loader 0.15.10+
1 parent 2f8a108 commit fe2d58f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

common.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ dependencies {
3636
// dependencies
3737
// include(modImplementation(fabricApi.module("fabric-resource-loader-v0", project.fabric_api_version)))
3838
// include(modImplementation("me.fallenbreath:conditional-mixin-fabric:${project.conditionalmixin_version}"))
39-
// include(annotationProcessor(implementation("io.github.llamalad7:mixinextras-fabric:${project.mixinextras_version}")))
39+
// if (mcVersion < 12005) {
40+
// include("io.github.llamalad7:mixinextras-fabric:${project.mixinextras_version}")
41+
// }
4042
}
4143

4244
String MIXIN_CONFIG_PATH = 'template_mod.mixins.json'

0 commit comments

Comments
 (0)