diff --git a/src/main/java/resonantinduction/core/ResonantInduction.java b/src/main/java/resonantinduction/core/ResonantInduction.java index df047a50..193a1c13 100644 --- a/src/main/java/resonantinduction/core/ResonantInduction.java +++ b/src/main/java/resonantinduction/core/ResonantInduction.java @@ -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; - } }