From: ANAND Date: Fri, 20 Dec 2019 18:15:40 +0000 (+0530) Subject: /privs: Delimit output list of privs with commas (#9224) X-Git-Tag: 5.2.0~246 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ec3224dce26fac8361f457514d4376d9753ee36b;p=oweals%2Fminetest.git /privs: Delimit output list of privs with commas (#9224) --- 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, })