diff --git a/build.gradle b/build.gradle index 37dce89..1050c2b 100644 --- a/build.gradle +++ b/build.gradle @@ -35,13 +35,14 @@ sourceSets { } mixin { - add sourceSets.main, 'mousetweaks.mixins.refmap.json' config 'mousetweaks.mixins.json' } minecraft { mappings channel: 'official', version: '1.20.6' + reobf = false + runs { client { workingDirectory project.file('run') @@ -91,10 +92,11 @@ jar { "Implementation-Title" : project.name, "Implementation-Version" : "${project.version}", "Implementation-Vendor" : "YaLTeR", - "Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ") + "Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"), + "TweakClass" : 'org.spongepowered.asm.launch.MixinTweaker', + "TweakOrder" : 0, + "MixinConfigs" : "mousetweaks.mixins.json" ]) - - finalizedBy 'reobfJar' } task srcJar(type: Jar) {