diff options
author | madmaxoft <github@xoft.cz> | 2014-09-29 22:00:14 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-09-29 22:00:14 +0200 |
commit | 33dc66a4d23246b5794cf9ca5bd4287a72db4cec (patch) | |
tree | 21c480569faf2bcc1f18cfc1dbb75defc605102d /MCServer/Plugins/APIDump | |
parent | Updated the Core. (diff) | |
download | cuberite-33dc66a4d23246b5794cf9ca5bd4287a72db4cec.tar cuberite-33dc66a4d23246b5794cf9ca5bd4287a72db4cec.tar.gz cuberite-33dc66a4d23246b5794cf9ca5bd4287a72db4cec.tar.bz2 cuberite-33dc66a4d23246b5794cf9ca5bd4287a72db4cec.tar.lz cuberite-33dc66a4d23246b5794cf9ca5bd4287a72db4cec.tar.xz cuberite-33dc66a4d23246b5794cf9ca5bd4287a72db4cec.tar.zst cuberite-33dc66a4d23246b5794cf9ca5bd4287a72db4cec.zip |
Diffstat (limited to 'MCServer/Plugins/APIDump')
-rw-r--r-- | MCServer/Plugins/APIDump/APIDesc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MCServer/Plugins/APIDump/APIDesc.lua b/MCServer/Plugins/APIDump/APIDesc.lua index eace16c96..9bc6299d9 100644 --- a/MCServer/Plugins/APIDump/APIDesc.lua +++ b/MCServer/Plugins/APIDump/APIDesc.lua @@ -2037,7 +2037,7 @@ cPluginManager.AddHook(cPluginManager.HOOK_CHAT, OnChatMessage); ClearPlayerRanks = { Params = "", Return = "", Notes = "Removes all player ranks from the database. Note that this doesn't change the cPlayer instances for the already connected players, you need to update all the instances manually." }, GetAllGroups = { Params = "", Return = "array-table of groups' names", Notes = "Returns an array-table containing the names of all the groups that are known to the manager." }, GetAllPermissions = { Params = "", Return = "array-table of permissions", Notes = "Returns an array-table containing all the permissions that are known to the manager." }, - GetAllPlayers = { Params = "", Return = "array-table of playernames", Notes = "Returns the short uuids of all defined players." }, + GetAllPlayers = { Params = "", Return = "array-table of uuids", Notes = "Returns the short uuids of all defined players, sorted by the players' names (case insensitive)." }, GetAllRanks = { Params = "", Return = "array-table of ranks' names", Notes = "Returns an array-table containing the names of all the ranks that are known to the manager." }, GetDefaultRank = { Params = "", Return = "string", Notes = "Returns the name of the default rank. " }, GetGroupPermissions = { Params = "GroupName", Return = "array-table of permissions", Notes = "Returns an array-table containing the permissions that the specified group contains." }, |