Exceptions during construction phase should not propogate and cause an immediate crash. Closes #638

This commit is contained in:
cpw 2015-04-18 21:48:49 -04:00
parent 5f7c3bd72d
commit e1ed3c07c2

View file

@ -513,7 +513,6 @@ public class FMLModContainer implements ModContainer
catch (Throwable e)
{
controller.errorOccurred(this, e);
Throwables.propagateIfPossible(e);
}
}