This commit is contained in:
Modmuss50 2015-11-23 14:47:50 +00:00
parent 011ebaba1d
commit fa9cd98b5a
21 changed files with 76 additions and 76 deletions

View file

@ -95,8 +95,8 @@ public class TileQuantumChest extends TileMachineBase implements IInventory,
public Packet getDescriptionPacket() {
NBTTagCompound nbtTag = new NBTTagCompound();
writeToNBT(nbtTag);
return new S35PacketUpdateTileEntity(this.xCoord, this.yCoord,
this.zCoord, 1, nbtTag);
return new S35PacketUpdateTileEntity(this.getPos().getX(), this.getPos().getY(),
this.getPos().getZ(), 1, nbtTag);
}
@Override