Allow players with the protection_bypass privilege or access to

the protection to access wielder node inventories.

Fixes #40.
This commit is contained in:
auouymous 2020-09-24 05:12:32 -06:00
parent 61b061f669
commit c966a8a57d
1 changed files with 2 additions and 2 deletions

View File

@ -71,8 +71,8 @@ function pipeworks.may_configure(pos, player)
local meta = minetest.get_meta(pos)
local owner = meta:get_string("owner")
if owner ~= "" then -- wielders and filters
return owner == name
if owner ~= "" and owner == name then -- wielders and filters
return true
end
return not minetest.is_protected(pos, name)
end