From d3f5b4df809fd03919952285a1906652097f00e6 Mon Sep 17 00:00:00 2001 From: syeyoung Date: Sun, 1 Jan 2023 01:43:21 +0900 Subject: - tweaker prevents mod from running ??? Why!!! Signed-off-by: syeyoung --- mod/build.gradle | 4 ++-- mod/src/main/java/kr/syeyoung/dungeonsguide/mod/VersionInfo.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'mod') diff --git a/mod/build.gradle b/mod/build.gradle index ee33fedd..0d7138fe 100644 --- a/mod/build.gradle +++ b/mod/build.gradle @@ -20,7 +20,6 @@ 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", "kr.syeyoung.dungeonsguide.launcher.coremod.DGTweaker") // arg("--mixin", "mixins.examplemod.json") } @@ -33,8 +32,9 @@ loom { } runs { client { - runDir = 'runtime' + runDir = '../runtime' property('devauth.enabled','true') + property("fml.coreMods.load", "kr.syeyoung.dungeonsguide.launcher.coremod.DGTweaker") property('dg.loader', 'devenv') client() vmArgs.remove("-XstartOnFirstThread") diff --git a/mod/src/main/java/kr/syeyoung/dungeonsguide/mod/VersionInfo.java b/mod/src/main/java/kr/syeyoung/dungeonsguide/mod/VersionInfo.java index aea56f3b..b84fdcb8 100644 --- a/mod/src/main/java/kr/syeyoung/dungeonsguide/mod/VersionInfo.java +++ b/mod/src/main/java/kr/syeyoung/dungeonsguide/mod/VersionInfo.java @@ -30,7 +30,7 @@ import java.io.IOException; import java.util.Optional; public class VersionInfo { - public static final String VERSION = "4.0.0-beta.1"; + public static final String VERSION = "2023/01/01-651ce09"; public static IDGLoader getCurrentLoader() { return Main.getMain().getCurrentLoader(); -- cgit