diff --git a/src/main/java/techreborn/blockentity/machine/tier3/ChunkLoaderBlockEntity.java b/src/main/java/techreborn/blockentity/machine/tier3/ChunkLoaderBlockEntity.java index 636b71c21..19c68bf4d 100644 --- a/src/main/java/techreborn/blockentity/machine/tier3/ChunkLoaderBlockEntity.java +++ b/src/main/java/techreborn/blockentity/machine/tier3/ChunkLoaderBlockEntity.java @@ -134,6 +134,7 @@ public class ChunkLoaderBlockEntity extends MachineBaseBlockEntity implements IT public CompoundTag toTag(CompoundTag tagCompound) { super.toTag(tagCompound); tagCompound.putInt("radius", radius); + tagCompound.putString("ownerUdid", ownerUdid); inventory.write(tagCompound); return tagCompound; }