diff --git a/fml/common/cpw/mods/fml/common/FMLCommonHandler.java b/fml/common/cpw/mods/fml/common/FMLCommonHandler.java index 2fc57b7a5..eb13499af 100644 --- a/fml/common/cpw/mods/fml/common/FMLCommonHandler.java +++ b/fml/common/cpw/mods/fml/common/FMLCommonHandler.java @@ -451,6 +451,10 @@ public class FMLCommonHandler public boolean shouldServerBeKilledQuietly() { + if (sidedDelegate == null) + { + return false; + } return sidedDelegate.shouldServerShouldBeKilledQuietly(); }