fixes #302
This commit is contained in:
parent
23255bdfff
commit
5324016199
1 changed files with 4 additions and 4 deletions
|
@ -120,16 +120,16 @@ public class TileAesu extends TilePowerAcceptor implements IWrenchable {
|
|||
return dropStack;
|
||||
}
|
||||
|
||||
public void writeToNBTWithoutCoords(NBTTagCompound tagCompound) {
|
||||
super.writeToNBTWithoutCoords(tagCompound);
|
||||
public void writeToNBT(NBTTagCompound tagCompound) {
|
||||
super.writeToNBT(tagCompound);
|
||||
tagCompound.setDouble("euChange", euChange);
|
||||
tagCompound.setDouble("euLastTick", euLastTick);
|
||||
tagCompound.setInteger("output", OUTPUT);
|
||||
inventory.writeToNBT(tagCompound);
|
||||
}
|
||||
|
||||
public void readFromNBTWithoutCoords(NBTTagCompound nbttagcompound) {
|
||||
super.readFromNBTWithoutCoords(nbttagcompound);
|
||||
public void readFromNBT(NBTTagCompound nbttagcompound) {
|
||||
super.readFromNBT(nbttagcompound);
|
||||
this.euChange = nbttagcompound.getDouble("euChange");
|
||||
this.euLastTick = nbttagcompound.getDouble("euLastTick");
|
||||
this.OUTPUT = nbttagcompound.getInteger("output");
|
||||
|
|
Loading…
Reference in a new issue