summaryrefslogtreecommitdiff
path: root/builtin/chatcommands.lua
diff options
context:
space:
mode:
Diffstat (limited to 'builtin/chatcommands.lua')
-rw-r--r--builtin/chatcommands.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/builtin/chatcommands.lua b/builtin/chatcommands.lua
index 7845c7083..eaafe9ee8 100644
--- a/builtin/chatcommands.lua
+++ b/builtin/chatcommands.lua
@@ -101,9 +101,10 @@ minetest.register_chatcommand("privs", {
if param == "" then
param = name
else
- if not minetest.check_player_privs(name, {privs=true}) then
+ --[[if not minetest.check_player_privs(name, {privs=true}) then
minetest.chat_send_player(name, "Privileges of "..param.." are hidden from you.")
- end
+ return
+ end]]
end
minetest.chat_send_player(name, "Privileges of "..param..": "..minetest.privs_to_string(minetest.get_player_privs(param), ' '))
end,