From ec3224dce26fac8361f457514d4376d9753ee36b Mon Sep 17 00:00:00 2001 From: ANAND Date: Fri, 20 Dec 2019 23:45:40 +0530 Subject: [PATCH] /privs: Delimit output list of privs with commas (#9224) --- builtin/game/chat.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/game/chat.lua b/builtin/game/chat.lua index 291e72b70..c7162aae1 100644 --- a/builtin/game/chat.lua +++ b/builtin/game/chat.lua @@ -141,7 +141,7 @@ core.register_chatcommand("privs", { end return true, "Privileges of " .. name .. ": " .. core.privs_to_string( - core.get_player_privs(name), ' ') + core.get_player_privs(name), ", ") end, })