From 8c7d0f53041af5b5e5b4e42902e6ac49abbd5bd7 Mon Sep 17 00:00:00 2001 From: madmaxoft Date: Mon, 7 Apr 2014 15:47:42 +0200 Subject: InfoReg uses cCompositeChat for subcommand lists. Also fixed an issue with console commands. --- MCServer/Plugins/InfoReg.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'MCServer/Plugins/InfoReg.lua') 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 -- cgit v1.2.3