Finally fix stupid NPE error caused by FML trying to parse the super of Object in IDEA envs.
This commit is contained in:
parent
07466ab036
commit
d21f8f6dbd
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ import cpw.mods.fml.common.discovery.ASMDataTable;
|
|||
*/
|
||||
public class ModClassLoader extends URLClassLoader
|
||||
{
|
||||
private static final List<String> STANDARD_LIBRARIES = ImmutableList.of("jinput.jar", "lwjgl.jar", "lwjgl_util.jar");
|
||||
private static final List<String> STANDARD_LIBRARIES = ImmutableList.of("jinput.jar", "lwjgl.jar", "lwjgl_util.jar", "rt.jar");
|
||||
private LaunchClassLoader mainClassLoader;
|
||||
|
||||
public ModClassLoader(ClassLoader parent) {
|
||||
|
|
Loading…
Reference in a new issue