From a8a87765885905b603a9c121ed5260da51ae3a77 Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Thu, 22 Feb 2024 23:32:11 +0100 Subject: Fix static loading --- build.gradle.kts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'build.gradle.kts') diff --git a/build.gradle.kts b/build.gradle.kts index 018de40..b615a51 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -30,7 +30,6 @@ loom { // If you don't want mixins, remove these lines property("mixin.debug", "true") property("asmhelper.verbose", "true") - arg("--tweakClass", "org.spongepowered.asm.launch.MixinTweaker") arg("--tweakClass", "moe.nea.kowalski.init.KowalskiTweaker") } } @@ -108,7 +107,7 @@ tasks.withType(Jar::class) { this["ForceLoadAsMod"] = "true" // If you don't want mixins, remove these lines - this["TweakClass"] = "org.spongepowered.asm.launch.MixinTweaker" + this["TweakClass"] = "moe.nea.kowalski.init.KowalskiTweaker" this["MixinConfigs"] = "mixins.$modid.json" } } -- cgit