diff options
Diffstat (limited to 'loader/build.gradle')
-rw-r--r-- | loader/build.gradle | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/loader/build.gradle b/loader/build.gradle index 14bd8e7b..921d9d41 100644 --- a/loader/build.gradle +++ b/loader/build.gradle @@ -21,7 +21,7 @@ loom { // probably will have to my own mixin tweaker, due to dungeonsguide's weird dynamic loading stuff // property("mixin.debug", "true") // property("asmhelper.verbose", "true") -// arg("--tweakClass", "org.spongepowered.asm.launch.MixinTweaker") + arg("--tweakClass", "kr.syeyoung.dungeonsguide.launcher.coremod.DGTweaker") // arg("--mixin", "mixins.examplemod.json") } @@ -87,6 +87,7 @@ tasks.withType(Jar) { manifest { attributes["FMLCorePluginContainsFMLMod"] = "true" attributes["ForceLoadAsMod"] = "true" + attributes["TweakClass"] = "kr.syeyoung.dugneonsguide.launcher.coremod.DGTweaker" // If you don't want mixins, remove these lines // this["TweakClass"] = "org.spongepowered.asm.launch.MixinTweaker" |