Fixed Resonant Induction not ticking client side

This commit is contained in:
Calclavia 2014-03-11 20:29:32 +08:00
parent 57f362dff2
commit 59e5c5cf10

View file

@ -153,18 +153,4 @@ public class ResonantInduction
if (!UpdateTicker.INSTANCE.isAlive())
UpdateTicker.INSTANCE.start();
}
@EventHandler
public void serverStarting(FMLServerStartingEvent event)
{
if (!UpdateTicker.INSTANCE.isAlive())
UpdateTicker.INSTANCE.start();
UpdateTicker.INSTANCE.pause = false;
}
@EventHandler
public void onServerStopping(FMLServerStoppingEvent evt)
{
UpdateTicker.INSTANCE.pause = true;
}
}