diff options
author | Linnea Gräf <nea@nea.moe> | 2024-07-12 21:38:29 +0200 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-07-12 21:38:29 +0200 |
commit | ebbe3df91ffc7194cd533b409db8b125aa09b686 (patch) | |
tree | fcd1f9a39e68ab31f163ca960cfd32eb68ce914f /tweaker/src/main/java/net | |
parent | 044900d6c238ba797423e0ad6b52aab0bdbcf3e5 (diff) | |
download | HyPixelForgeModAPI-ebbe3df91ffc7194cd533b409db8b125aa09b686.tar.gz HyPixelForgeModAPI-ebbe3df91ffc7194cd533b409db8b125aa09b686.tar.bz2 HyPixelForgeModAPI-ebbe3df91ffc7194cd533b409db8b125aa09b686.zip |
Fix depending on not reobfJar
Diffstat (limited to 'tweaker/src/main/java/net')
-rw-r--r-- | tweaker/src/main/java/net/hypixel/modapi/tweaker/HypixelModAPITweaker.java | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/tweaker/src/main/java/net/hypixel/modapi/tweaker/HypixelModAPITweaker.java b/tweaker/src/main/java/net/hypixel/modapi/tweaker/HypixelModAPITweaker.java index 6195833..4464cd7 100644 --- a/tweaker/src/main/java/net/hypixel/modapi/tweaker/HypixelModAPITweaker.java +++ b/tweaker/src/main/java/net/hypixel/modapi/tweaker/HypixelModAPITweaker.java @@ -12,6 +12,7 @@ import java.io.File; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; +import java.net.MalformedURLException; import java.net.URISyntaxException; import java.net.URL; import java.nio.file.Files; @@ -145,8 +146,12 @@ public class HypixelModAPITweaker implements ITweaker { */ private void injectAPI() { LOGGER.info("Injecting mod API of version {}", VERSION_NAME); - CoreModManager.getReparseableCoremods() - .add(unpackAPI().getPath()); + try { + Launch.classLoader.addURL(unpackAPI().toURI().toURL()); + LOGGER.info("Added mod API to classpath"); + } catch (MalformedURLException e) { + LOGGER.error("Could not add mod API to classpath", e); + } } /** @@ -200,6 +205,7 @@ public class HypixelModAPITweaker implements ITweaker { @Override public void acceptOptions(List<String> args, File gameDir, File assetsDir, String profile) { offerVersionToBlackboard(); + allowModLoading(); } @Override |