fix sentinels not actually existing

This commit is contained in:
yrsegal@gmail.com 2022-04-08 20:32:41 -04:00
parent a43d92c6a1
commit 898c4453b6

View file

@ -46,7 +46,7 @@ public class CapSentinel implements ICapabilitySerializable<CompoundTag> {
tag.putBoolean(TAG_EXISTS, this.hasSentinel);
tag.putBoolean(TAG_EXTENDS_RANGE, this.extendsRange);
tag.put(TAG_POSITION, HexUtils.serializeToNBT(this.position));
tag.putString(TAG_DIMENSION, dimension.getRegistryName().toString());
tag.putString(TAG_DIMENSION, dimension.location().toString());
return tag;
}