Try and handle "death on startup" a bit cleaner

This commit is contained in:
Christian 2013-01-27 15:54:36 -05:00
parent c19646421a
commit 5c99e3488a

View file

@ -451,6 +451,10 @@ public class FMLCommonHandler
public boolean shouldServerBeKilledQuietly()
{
if (sidedDelegate == null)
{
return false;
}
return sidedDelegate.shouldServerShouldBeKilledQuietly();
}