diff options
author | GodOfPro <59516901+GodOfProDev@users.noreply.github.com> | 2022-11-14 23:23:30 +0330 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-14 23:23:30 +0330 |
commit | 2d1f0103919258fabe97553dc5181acaae7243a8 (patch) | |
tree | c54833721c77c0d8a9ce515b1df4e48075bea198 | |
parent | c8d6e3c6da442e6e30b9547e6c7e87786db83ade (diff) | |
download | DulkirMod-2d1f0103919258fabe97553dc5181acaae7243a8.tar.gz DulkirMod-2d1f0103919258fabe97553dc5181acaae7243a8.tar.bz2 DulkirMod-2d1f0103919258fabe97553dc5181acaae7243a8.zip |
Essentials Launcher
actually using it
-rw-r--r-- | build.gradle.kts | 6 |
1 files changed, 3 insertions, 3 deletions
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<Jar> { duplicatesStrategy = DuplicatesStrategy.EXCLUDE } -tasks.assemble.get().dependsOn(tasks.remapJar)
\ No newline at end of file +tasks.assemble.get().dependsOn(tasks.remapJar) |