Finally fix stupid NPE error caused by FML trying to parse the super of Object in IDEA envs.

This commit is contained in:
Christian 2014-08-01 21:43:53 -02:30
parent 07466ab036
commit d21f8f6dbd

View file

@ -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) {