Use proper UUID methods
This commit is contained in:
@@ -141,7 +141,7 @@ public abstract class NetworkNode implements INetworkNode, INetworkNodeVisitor,
|
||||
@Override
|
||||
public NBTTagCompound write(NBTTagCompound tag) {
|
||||
if (owner != null) {
|
||||
tag.setString(NBT_OWNER, owner.toString()); // @todo: Use proper NBT UUID methods
|
||||
tag.setUniqueId(NBT_OWNER, owner);
|
||||
}
|
||||
|
||||
writeConfiguration(tag);
|
||||
@@ -158,7 +158,7 @@ public abstract class NetworkNode implements INetworkNode, INetworkNodeVisitor,
|
||||
|
||||
public void read(NBTTagCompound tag) {
|
||||
if (tag.hasKey(NBT_OWNER)) {
|
||||
owner = UUID.fromString(tag.getString(NBT_OWNER)); // @todo: Use proper NBT UUID methods
|
||||
owner = tag.getUniqueId(NBT_OWNER);
|
||||
}
|
||||
|
||||
readConfiguration(tag);
|
||||
|
||||
Reference in New Issue
Block a user