diff options
author | Mattes D <github@xoft.cz> | 2014-10-05 20:19:21 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-10-05 20:19:21 +0200 |
commit | a8aeceab9d6e5e5e36ef7bd58783b65aca4d8be7 (patch) | |
tree | ae3a23a0691b741c7b369f84a1de96126bf73aa6 /MCServer | |
parent | Update README.md (diff) | |
download | cuberite-a8aeceab9d6e5e5e36ef7bd58783b65aca4d8be7.tar cuberite-a8aeceab9d6e5e5e36ef7bd58783b65aca4d8be7.tar.gz cuberite-a8aeceab9d6e5e5e36ef7bd58783b65aca4d8be7.tar.bz2 cuberite-a8aeceab9d6e5e5e36ef7bd58783b65aca4d8be7.tar.lz cuberite-a8aeceab9d6e5e5e36ef7bd58783b65aca4d8be7.tar.xz cuberite-a8aeceab9d6e5e5e36ef7bd58783b65aca4d8be7.tar.zst cuberite-a8aeceab9d6e5e5e36ef7bd58783b65aca4d8be7.zip |
Diffstat (limited to '')
-rw-r--r-- | MCServer/Plugins/APIDump/APIDesc.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/MCServer/Plugins/APIDump/APIDesc.lua b/MCServer/Plugins/APIDump/APIDesc.lua index bf5003035..6a151b5ef 100644 --- a/MCServer/Plugins/APIDump/APIDesc.lua +++ b/MCServer/Plugins/APIDump/APIDesc.lua @@ -529,6 +529,7 @@ end GetLocale = { Params = "", Return = "Locale", Notes = "Returns the locale string that the client sends as part of the protocol handshake. Can be used to provide localized strings." }, GetPing = { Params = "", Return = "number", Notes = "Returns the ping time, in ms" }, GetPlayer = { Params = "", Return = "{{cPlayer|cPlayer}}", Notes = "Returns the player object connected to this client. Note that this may be nil, for example if the player object is not yet spawned." }, + GetProtocolVersion = { Params = "", Return = "number", Notes = "Returns the protocol version number of the protocol that the client is talking. Returns zero if the protocol version is not (yet) known." }, GetUniqueID = { Params = "", Return = "number", Notes = "Returns the UniqueID of the client used to identify the client in the server" }, GetUUID = { Params = "", Return = "string", Notes = "Returns the authentication-based UUID of the client. This UUID should be used to identify the player when persisting any player-related data. Returns a 32-char UUID (no dashes)" }, GetUsername = { Params = "", Return = "string", Notes = "Returns the username that the client has provided" }, |