summaryrefslogtreecommitdiff
path: root/build.gradle.kts
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2024-02-22 23:32:11 +0100
committerLinnea Gräf <nea@nea.moe>2024-02-22 23:32:11 +0100
commita8a87765885905b603a9c121ed5260da51ae3a77 (patch)
treedcbe2349b3c7e3dd1566af871e6f57e431461d75 /build.gradle.kts
parentaef074886b587745bd814fe965d55e7b4cf11a07 (diff)
downloadKowalski-a8a87765885905b603a9c121ed5260da51ae3a77.tar.gz
Kowalski-a8a87765885905b603a9c121ed5260da51ae3a77.tar.bz2
Kowalski-a8a87765885905b603a9c121ed5260da51ae3a77.zip
Fix static loadingHEADmaster
Diffstat (limited to 'build.gradle.kts')
-rw-r--r--build.gradle.kts3
1 files changed, 1 insertions, 2 deletions
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"
}
}