mirror of
https://github.com/CitizensDev/Citizens2.git
synced 2024-11-27 05:05:20 +01:00
Use the NPC's UUID instead of a random one
This commit is contained in:
parent
901f7ad654
commit
4e6d0547c0
@ -57,7 +57,7 @@ public class HumanController extends AbstractEntityController {
|
||||
coloredName = coloredName.substring(0, 16);
|
||||
}
|
||||
|
||||
UUID uuid = UUID.randomUUID();
|
||||
UUID uuid = npc.getUniqueId();
|
||||
if (uuid.version() == 4) { // clear version
|
||||
uuid = new UUID(uuid.getMostSignificantBits() | 0x0000000000005000L, uuid.getLeastSignificantBits());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user