Fix routing node serialization (#913)

This commit is contained in:
Nicholas Ignoffo 2016-09-12 16:01:47 -07:00
parent 8375daf7d4
commit ccacb0acfc

View file

@ -43,7 +43,7 @@ public class TileRoutingNode extends TileInventory implements IRoutingNode, IIte
@Override
public NBTTagCompound serialize(NBTTagCompound tag)
{
super.deserialize(tag);
super.serialize(tag);
NBTTagCompound masterTag = new NBTTagCompound();
masterTag.setInteger(Constants.NBT.X_COORD, masterPos.getX());
masterTag.setInteger(Constants.NBT.Y_COORD, masterPos.getY());