summaryrefslogtreecommitdiff
path: root/ownership.lua
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2014-01-30 16:09:23 -0500
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2014-01-30 16:09:23 -0500
commit050b19e4635618b924998037046372d67f8dc9a8 (patch)
tree814271089f7546fbf46c9e7aecfcd3263aa3ce38 /ownership.lua
parentb0a559ed0bc6d2b9bf423f3561a4551248aeb0f4 (diff)
Get rid of old ownership code, use Minetest's own code instead
Diffstat (limited to 'ownership.lua')
-rw-r--r--ownership.lua35
1 files changed, 0 insertions, 35 deletions
diff --git a/ownership.lua b/ownership.lua
deleted file mode 100644
index e075888..0000000
--- a/ownership.lua
+++ /dev/null
@@ -1,35 +0,0 @@
-
-local S = moretrees.gettext
-
-function moretrees:node_is_owned(pos, placer)
- local ownername = false
- if type(IsPlayerNodeOwner) == "function" then -- node_ownership mod
- if HasOwner(pos, placer) then -- returns true if the node is owned
- if not IsPlayerNodeOwner(pos, placer:get_player_name()) then
- if type(getLastOwner) == "function" then -- ...is an old version
- ownername = getLastOwner(pos)
- elseif type(GetNodeOwnerName) == "function" then -- ...is a recent version
- ownername = GetNodeOwnerName(pos)
- else
- ownername = S("someone")
- end
- end
- end
-
- 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
- if not protector.can_dig(5, pos, placer) then
- ownername = S("someone")
- end
- end
-
- if ownername ~= false then
- minetest.chat_send_player( placer:get_player_name(), S("Sorry, %s owns that spot."):format(ownername) )
- return true
- else
- return false
- end
-end