@Override
 public void toBytes(ByteBuf buf) {
   super.toBytes(buf);
   NBTTagCompound tag = new NBTTagCompound();
   ExternalCoords.writeToNBT(tag, coords);
   ByteBufUtils.writeTag(buf, tag);
 }