fixed the adept hopper storing the cooldown in the block

This commit is contained in:
Ellpeck 2019-01-26 23:22:05 +01:00
parent a9fba47159
commit 047e8e91c3

View file

@ -124,13 +124,15 @@ public class TileEntityGratedChute extends TileEntityImpl implements ITickable {
@Override
public void writeNBT(NBTTagCompound compound, SaveType type) {
super.writeNBT(compound, type);
compound.setInteger("cooldown", this.cooldown);
if (type != SaveType.BLOCK)
compound.setInteger("cooldown", this.cooldown);
}
@Override
public void readNBT(NBTTagCompound compound, SaveType type) {
super.readNBT(compound, type);
this.cooldown = compound.getInteger("cooldown");
if (type != SaveType.BLOCK)
this.cooldown = compound.getInteger("cooldown");
}
@Override