From 2d1f0103919258fabe97553dc5181acaae7243a8 Mon Sep 17 00:00:00 2001 From: GodOfPro <59516901+GodOfProDev@users.noreply.github.com> Date: Mon, 14 Nov 2022 23:23:30 +0330 Subject: Essentials Launcher actually using it --- build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'build.gradle.kts') diff --git a/build.gradle.kts b/build.gradle.kts index 655b568..508352c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -27,7 +27,7 @@ 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", "gg.essential.loader.stage0.EssentialSetupTweaker") arg("--mixin", "mixins.dulkirmod.json") } } @@ -101,7 +101,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"] = "gg.essential.loader.stage0.EssentialSetupTweaker" this["MixinConfigs"] = "mixins.dulkirmod.json" } } @@ -128,4 +128,4 @@ tasks.shadowJar { tasks.withType { duplicatesStrategy = DuplicatesStrategy.EXCLUDE } -tasks.assemble.get().dependsOn(tasks.remapJar) \ No newline at end of file +tasks.assemble.get().dependsOn(tasks.remapJar) -- cgit