summaryrefslogtreecommitdiff
path: root/grapes.lua
diff options
context:
space:
mode:
authorTenPlus1 <kinsellaja@yahoo.com>2018-05-31 18:13:05 +0100
committerTenPlus1 <kinsellaja@yahoo.com>2018-05-31 18:13:05 +0100
commit20f827f4fbee4031aec571628c9096ea75f88fdc (patch)
tree4de82fd9a8e9472b582a21dfcb62d4865ada9d53 /grapes.lua
parenta2b9d8f4efad88452c4b7d8a510bf992f57dd388 (diff)
add protection checks
Diffstat (limited to 'grapes.lua')
-rw-r--r--grapes.lua7
1 files changed, 6 insertions, 1 deletions
diff --git a/grapes.lua b/grapes.lua
index 9a6ab9e..8b0ae2a 100644
--- a/grapes.lua
+++ b/grapes.lua
@@ -26,6 +26,11 @@ local function place_grapes(itemstack, placer, pointed_thing, plantname)
return def.on_rightclick(pt.under, under, placer, itemstack)
end
+ -- check for protection
+ if minetest.is_protected(pt.under, placer:get_player_name()) then
+ return
+ end
+
-- check if pointing at trellis
if under.name ~= "farming:trellis" then
return
@@ -114,7 +119,7 @@ minetest.register_node("farming:trellis", {
return def.on_rightclick(pt.under, under, placer, itemstack)
end
- if minetest.is_protected(pt.under, placer:get_player_name()) then
+ if minetest.is_protected(pt.above, placer:get_player_name()) then
return
end