Remove reference to deprecated privilege

This commit is contained in:
Craig Davison 2015-06-14 21:28:51 +01:00 committed by est31
parent ee38bcd307
commit ecdfbfc8dc
1 changed files with 1 additions and 1 deletions

View File

@ -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