mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-22 19:58:34 +01:00
fixed the adept hopper storing the cooldown in the block
This commit is contained in:
parent
a9fba47159
commit
047e8e91c3
1 changed files with 4 additions and 2 deletions
|
@ -124,12 +124,14 @@ public class TileEntityGratedChute extends TileEntityImpl implements ITickable {
|
|||
@Override
|
||||
public void writeNBT(NBTTagCompound compound, SaveType type) {
|
||||
super.writeNBT(compound, type);
|
||||
if (type != SaveType.BLOCK)
|
||||
compound.setInteger("cooldown", this.cooldown);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void readNBT(NBTTagCompound compound, SaveType type) {
|
||||
super.readNBT(compound, type);
|
||||
if (type != SaveType.BLOCK)
|
||||
this.cooldown = compound.getInteger("cooldown");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue