Try and handle "death on startup" a bit cleaner
This commit is contained in:
parent
c19646421a
commit
5c99e3488a
1 changed files with 4 additions and 0 deletions
|
@ -451,6 +451,10 @@ public class FMLCommonHandler
|
||||||
|
|
||||||
public boolean shouldServerBeKilledQuietly()
|
public boolean shouldServerBeKilledQuietly()
|
||||||
{
|
{
|
||||||
|
if (sidedDelegate == null)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
return sidedDelegate.shouldServerShouldBeKilledQuietly();
|
return sidedDelegate.shouldServerShouldBeKilledQuietly();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue