Fix another error

This commit is contained in:
zontreck 2024-05-23 11:44:48 -07:00
parent 312176d37f
commit 18d55666e6
2 changed files with 2 additions and 1 deletions

View file

@ -31,6 +31,7 @@ class NbtUUID {
ByteLayer layer = ByteLayer();
layer.writeLong(MSB);
layer.writeLong(LSB);
layer.resetPosition();
return UUID(layer.readBytes(16));
}