minor fix to the chunk loader

This commit is contained in:
modmuss50 2019-12-24 21:41:41 +00:00
parent c4ecef5dcb
commit d4abd56a3c

View file

@ -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;
}