Fixed Derpy Update Check in ME Chest

This commit is contained in:
AlgorithmX2 2014-07-10 00:43:27 -05:00
parent d2e332eedb
commit 42840d6936

View file

@ -222,7 +222,7 @@ public class TileChest extends AENetworkPowerTile implements IMEChest, IFluidHan
lastStateChange = worldObj.getTotalWorldTime();
return (state & 0xDB6DB6DB) != (oldState & 0xDB6DB6DB) || oldType != storageType;
return (state & 0xDB6DB6DB) != (oldState & 0xDB6DB6DB) || !Platform.isSameItemPrecise( oldType, storageType );
}
@Override