added "protection_bypass" privelage support

This commit is contained in:
TenPlus1 2016-05-21 16:21:38 +01:00
parent f02fe24b61
commit a37e8e651e
2 changed files with 3 additions and 1 deletions

View File

@ -36,6 +36,7 @@ Released under WTFPL
areas by dropping tools and hurting player.
1.7 - Included an edited version of WTFPL doors mod since protected doors didn't
work with the doors mod in the latest daily build... Now it's fine :)
added support for "protection_bypass" privelage.
Usage: (requires server privelage)

View File

@ -122,7 +122,8 @@ protector.can_dig = function(r, pos, digger, onlyowner, infolevel)
-- Delprotect privileged users can override protections
if minetest.check_player_privs(digger, {delprotect = true})
if ( minetest.check_player_privs(digger, {delprotect = true})
or minetest.check_player_privs(digger, {protection_bypass = true}) )
and infolevel == 1 then
return true
end