Posted March 15, 201312 yr I'm making a (private) Minecraft launcher and would like to use fmlbranding. The problem I have is: I need to explicitly add my launcher JAR to classpath of ClassLoader I create to load Minecraft classes, like this: mcClassUrls.add(getClass().getProtectionDomain().getCodeSource().getLocation()); // ... URLClassLoader mcClassLoader = new URLClassLoader(mcClassUrls.toArray(new URL[0]), getClass().getClassLoader()); If I don't do that, FML doesn't see fmlbranding.properties, regardless of parent ClassLoader. What's the best way to go without adding unnecessary classes to the classpath?
March 15, 201312 yr Just add your shit to the classpath. I do Forge for free, however the servers to run it arn't free, so anything is appreciated. Consider supporting the team on Patreon
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.