summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cocoa.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/cocoa.lua b/cocoa.lua
index 4e62cee..a11a611 100644
--- a/cocoa.lua
+++ b/cocoa.lua
@@ -17,7 +17,8 @@ function place_cocoa(itemstack, placer, pointed_thing, plantname)
end
-- check if pointing at jungletree
- if under.name ~= "default:jungletree" then
+ if under.name ~= "default:jungletree"
+ or minetest.get_node(pt.above).name ~= "air" then
return
end