diff options
Diffstat (limited to 'tweaker')
-rw-r--r-- | tweaker/build.gradle | 4 | ||||
-rw-r--r-- | tweaker/src/main/java/net/hypixel/modapi/tweaker/HypixelModAPITweaker.java | 10 |
2 files changed, 12 insertions, 2 deletions
diff --git a/tweaker/build.gradle b/tweaker/build.gradle index 8962b17..e8eada8 100644 --- a/tweaker/build.gradle +++ b/tweaker/build.gradle @@ -17,6 +17,10 @@ task generateVersionInfo(type: WriteProperties) { } tasks.jar { + dependsOn(project(":").reobfJar) from(project(":").jar) from(generateVersionInfo) + manifest { + attributes("TweakClass": "net.hypixel.modapi.tweaker.HypixelModAPITweaker") + } } 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 |