diff options
Diffstat (limited to 'moreblocks/ownership.lua')
-rw-r--r-- | moreblocks/ownership.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/moreblocks/ownership.lua b/moreblocks/ownership.lua index 1c2431b..355d7f1 100644 --- a/moreblocks/ownership.lua +++ b/moreblocks/ownership.lua @@ -22,11 +22,11 @@ function moreblocks.node_is_owned(pos, placer) end end - elseif type(isprotect)=="function" then -- glomie's protection mod + elseif type(isprotect)=="function" then -- glomie's protection mod if not isprotect(5, pos, placer) then ownername = S("someone") end - elseif type(protector)=="table" and type(protector.can_dig)=="function" then -- Zeg9's protection mod + elseif type(protector)=="table" and type(protector.can_dig)=="function" then -- Zeg9's protection mod if not protector.can_dig(5, pos, placer) then ownername = S("someone") end |