Added saving crafting time to nbt

This commit is contained in:
modmuss50 2015-05-08 20:43:28 +01:00
parent ed249fdf75
commit 0bf7af8a84
2 changed files with 12 additions and 2 deletions

View file

@ -79,6 +79,7 @@ public class TileImplosionCompressor extends TileMachineBase implements IWrencha
super.readFromNBT(tagCompound);
inventory.readFromNBT(tagCompound);
energy.readFromNBT(tagCompound);
crafter.readFromNBT(tagCompound);
}
@Override
@ -87,6 +88,7 @@ public class TileImplosionCompressor extends TileMachineBase implements IWrencha
super.writeToNBT(tagCompound);
inventory.writeToNBT(tagCompound);
energy.writeToNBT(tagCompound);
crafter.writeToNBT(tagCompound);
}
}