return String.format("%d,%d,%d", x, y, z);
}
public NBTCompound tag() {
NBTCompound tag = new NBTCompound("coordinate");
tag.put(new NBTInt("x", x));
tag.put(new NBTInt("y", y));
tag.put(new NBTInt("z", z));
tag.put(new NBTInt("dimension", dimension.index()));
return tag;
}