diff --git a/tile/storage/TileChest.java b/tile/storage/TileChest.java index 676eb7d40..0984a43fa 100644 --- a/tile/storage/TileChest.java +++ b/tile/storage/TileChest.java @@ -146,7 +146,8 @@ public class TileChest extends AENetworkPowerTile implements IMEChest, IFluidHan private class invManger extends AETileEventHandler { - public invManger() { + public invManger() + { super( TileEventType.TICK, TileEventType.NETWORK, TileEventType.WORLD_NBT ); } @@ -264,7 +265,8 @@ public class TileChest extends AENetworkPowerTile implements IMEChest, IFluidHan recalculateDisplay(); } - public TileChest() { + public TileChest() + { internalMaxPower = PowerMultiplier.CONFIG.multiply( 40 ); gridProxy.setFlags( GridFlags.REQUIRE_CHANNEL ); addNewHandler( new invManger() ); @@ -299,7 +301,8 @@ public class TileChest extends AENetworkPowerTile implements IMEChest, IFluidHan final StorageChannel chan; - public ChestNetNotifier(StorageChannel chan) { + public ChestNetNotifier(StorageChannel chan) + { this.chan = chan; } @@ -343,7 +346,8 @@ public class TileChest extends AENetworkPowerTile implements IMEChest, IFluidHan class ChestMonitorHandler extends MEMonitorHandler { - public ChestMonitorHandler(IMEInventoryHandler t) { + public ChestMonitorHandler(IMEInventoryHandler t) + { super( t ); } @@ -520,7 +524,7 @@ public class TileChest extends AENetworkPowerTile implements IMEChest, IFluidHan if ( ForgeDirection.SOUTH == side ) return front; - if ( gridProxy.isActive() ) + if ( isPowered() ) { try {