diff options
author | syeyoung <cyoung06@naver.com> | 2023-01-01 01:43:21 +0900 |
---|---|---|
committer | syeyoung <cyoung06@naver.com> | 2023-01-01 12:42:16 +0900 |
commit | d3f5b4df809fd03919952285a1906652097f00e6 (patch) | |
tree | 6ace5531214fb40b0080666f8bd2b291d8e3bb1c /mod | |
parent | de408dbc39b9f07cbbe4d0f2372333226b418903 (diff) | |
download | Skyblock-Dungeons-Guide-d3f5b4df809fd03919952285a1906652097f00e6.tar.gz Skyblock-Dungeons-Guide-d3f5b4df809fd03919952285a1906652097f00e6.tar.bz2 Skyblock-Dungeons-Guide-d3f5b4df809fd03919952285a1906652097f00e6.zip |
- tweaker prevents mod from running ??? Why!!!
Signed-off-by: syeyoung <cyoung06@naver.com>
Diffstat (limited to 'mod')
-rw-r--r-- | mod/build.gradle | 4 | ||||
-rw-r--r-- | mod/src/main/java/kr/syeyoung/dungeonsguide/mod/VersionInfo.java | 2 |
2 files changed, 3 insertions, 3 deletions
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(); |