/privs: Delimit output list of privs with commas (#9224)

This commit is contained in:
ANAND 2019-12-20 23:45:40 +05:30 committed by SmallJoker
parent 4b9fabf172
commit ec3224dce2
1 changed files with 1 additions and 1 deletions

View File

@ -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,
})