summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/InfoReg.lua
diff options
context:
space:
mode:
authordaniel0916 <theschokolps@gmail.com>2014-04-12 19:55:37 +0200
committerdaniel0916 <theschokolps@gmail.com>2014-04-12 19:55:37 +0200
commit2689a63e9cf61befba38a20b0bc0503070b05dfe (patch)
tree847a53356aa91ca677c9fc57e917ee9f9bd7fd6d /MCServer/Plugins/InfoReg.lua
parentFixed Bookshelves Checking (not completly) (diff)
parentUpdated the NetherFort prefabs to current Gallery contents. (diff)
downloadcuberite-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 '')
-rw-r--r--MCServer/Plugins/InfoReg.lua12
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