From ebbe3df91ffc7194cd533b409db8b125aa09b686 Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Fri, 12 Jul 2024 21:38:29 +0200 Subject: Fix depending on not reobfJar --- .../java/net/hypixel/modapi/tweaker/HypixelModAPITweaker.java | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'tweaker/src/main/java/net/hypixel/modapi') 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 args, File gameDir, File assetsDir, String profile) { offerVersionToBlackboard(); + allowModLoading(); } @Override -- cgit