Some more fixes to the energy net

This commit is contained in:
modmuss50 2016-03-08 18:55:40 +00:00
parent 7e5e40a338
commit 6765756e2d
2 changed files with 5 additions and 3 deletions

View file

@ -32,8 +32,10 @@ public class TRTickHandler {
@SubscribeEvent
public void worldTick(TickEvent.WorldTickEvent e) {
if(!e.world.isRemote)
MinecraftForge.EVENT_BUS.post(new PowerTickEvent());
if(e.world.isRemote){
return;
}
MinecraftForge.EVENT_BUS.post(new PowerTickEvent());
}
}