1
0
mirror of https://github.com/lucko/LuckPerms.git synced 2025-08-31 18:11:44 +02:00

Clarify uuid type in user info command (#3233)

This commit is contained in:
Luck
2021-12-10 23:47:06 +00:00
parent 8cc126f711
commit 664cad21a9
3 changed files with 71 additions and 12 deletions

View File

@@ -56,6 +56,22 @@ public interface UniqueIdDetermineTypeEvent extends LuckPermsEvent, ResultEvent<
*/
String TYPE_UNAUTHENTICATED = "unauthenticated";
/**
* The players UUID most likely belongs to a NPC (non-player character).
*
* <p>Usually indicated by the UUID being {@link UUID#version() version} 2.</p>
*
* @since 5.4
*/
String TYPE_NPC = "npc";
/**
* Unknown UUID type.
*
* @since 5.4
*/
String TYPE_UNKNOWN = "unknown";
/**
* Gets the {@link UUID unique id} being queried.
*