diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2018-05-31 18:13:05 +0100 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2018-05-31 18:13:05 +0100 |
commit | 20f827f4fbee4031aec571628c9096ea75f88fdc (patch) | |
tree | 4de82fd9a8e9472b582a21dfcb62d4865ada9d53 /grapes.lua | |
parent | a2b9d8f4efad88452c4b7d8a510bf992f57dd388 (diff) |
add protection checks
Diffstat (limited to 'grapes.lua')
-rw-r--r-- | grapes.lua | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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 |