From: Craig Davison Date: Sun, 14 Jun 2015 20:28:51 +0000 (+0100) Subject: Remove reference to deprecated privilege X-Git-Tag: 0.4.13~207 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ecdfbfc8dc1bc62acce0b041b5a3349f886843ec;p=oweals%2Fminetest.git Remove reference to deprecated privilege --- diff --git a/builtin/game/chatcommands.lua b/builtin/game/chatcommands.lua index d5d9c3d25..d656f1c91 100644 --- a/builtin/game/chatcommands.lua +++ b/builtin/game/chatcommands.lua @@ -189,7 +189,7 @@ core.register_chatcommand("revoke", { local revoke_privs = core.string_to_privs(revoke_priv_str) local privs = core.get_player_privs(revoke_name) for priv, _ in pairs(revoke_privs) do - if priv ~= "interact" and priv ~= "shout" and priv ~= "interact_extra" and + if priv ~= "interact" and priv ~= "shout" and not core.check_player_privs(name, {privs=true}) then return false, "Your privileges are insufficient." end