diff options
author | daniel0916 <theschokolps@gmail.com> | 2014-04-12 19:55:37 +0200 |
---|---|---|
committer | daniel0916 <theschokolps@gmail.com> | 2014-04-12 19:55:37 +0200 |
commit | 2689a63e9cf61befba38a20b0bc0503070b05dfe (patch) | |
tree | 847a53356aa91ca677c9fc57e917ee9f9bd7fd6d /MCServer | |
parent | Fixed Bookshelves Checking (not completly) (diff) | |
parent | Updated the NetherFort prefabs to current Gallery contents. (diff) | |
download | cuberite-2689a63e9cf61befba38a20b0bc0503070b05dfe.tar cuberite-2689a63e9cf61befba38a20b0bc0503070b05dfe.tar.gz cuberite-2689a63e9cf61befba38a20b0bc0503070b05dfe.tar.bz2 cuberite-2689a63e9cf61befba38a20b0bc0503070b05dfe.tar.lz cuberite-2689a63e9cf61befba38a20b0bc0503070b05dfe.tar.xz cuberite-2689a63e9cf61befba38a20b0bc0503070b05dfe.tar.zst cuberite-2689a63e9cf61befba38a20b0bc0503070b05dfe.zip |
Diffstat (limited to 'MCServer')
-rw-r--r-- | MCServer/Plugins/InfoReg.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/MCServer/Plugins/InfoReg.lua b/MCServer/Plugins/InfoReg.lua index 27e63aa5b..da5a9972c 100644 --- a/MCServer/Plugins/InfoReg.lua +++ b/MCServer/Plugins/InfoReg.lua @@ -16,22 +16,22 @@ local function ListSubcommands(a_Player, a_Subcommands, a_CmdString) end -- Enum all the subcommands: - local Verbs = {}; + local Verbs = {} for cmd, info in pairs(a_Subcommands) do - if (a_Player:HasPermission(info.Permission or "")) then - table.insert(Verbs, " " .. a_CmdString .. " " .. cmd); + if ((a_Player == nil) or (a_Player:HasPermission(info.Permission or ""))) then + table.insert(Verbs, a_CmdString .. " " .. cmd) end end - table.sort(Verbs); + table.sort(Verbs) -- Send the list: if (a_Player == nil) then for idx, verb in ipairs(Verbs) do - LOGINFO(verb); + LOGINFO(" " .. verb) end else for idx, verb in ipairs(Verbs) do - a_Player:SendMessage(verb); + a_Player:SendMessage(cCompositeChat(" ", mtInfo):AddSuggestCommandPart(verb, verb)) end end end |