Remove reference to deprecated privilege
This commit is contained in:
parent
ee38bcd307
commit
ecdfbfc8dc
|
@ -189,7 +189,7 @@ core.register_chatcommand("revoke", {
|
||||||
local revoke_privs = core.string_to_privs(revoke_priv_str)
|
local revoke_privs = core.string_to_privs(revoke_priv_str)
|
||||||
local privs = core.get_player_privs(revoke_name)
|
local privs = core.get_player_privs(revoke_name)
|
||||||
for priv, _ in pairs(revoke_privs) do
|
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
|
not core.check_player_privs(name, {privs=true}) then
|
||||||
return false, "Your privileges are insufficient."
|
return false, "Your privileges are insufficient."
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue