From c7d569b8636d8046393715e46fca40e58138183f Mon Sep 17 00:00:00 2001 From: red-001 Date: Mon, 26 Sep 2016 19:07:52 +0100 Subject: Chat commands: Trim whitespaces from input of `/privs` command --- builtin/game/chatcommands.lua | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'builtin/game') diff --git a/builtin/game/chatcommands.lua b/builtin/game/chatcommands.lua index d8fee1578..2bd93855b 100644 --- a/builtin/game/chatcommands.lua +++ b/builtin/game/chatcommands.lua @@ -147,11 +147,12 @@ core.register_chatcommand("help", { core.register_chatcommand("privs", { params = "", description = "print out privileges of player", - func = function(name, param) - param = (param ~= "" and param or name) - return true, "Privileges of " .. param .. ": " + func = function(caller, param) + param = param:trim() + local name = (param ~= "" and param or caller) + return true, "Privileges of " .. name .. ": " .. core.privs_to_string( - core.get_player_privs(param), ' ') + core.get_player_privs(name), ' ') end, }) -- cgit v1.2.3