summaryrefslogtreecommitdiff
path: root/crops/cocoa.lua
diff options
context:
space:
mode:
authorTenPlus1 <kinsellaja@yahoo.com>2018-06-19 18:36:00 +0100
committerTenPlus1 <kinsellaja@yahoo.com>2018-06-19 18:36:00 +0100
commit1018a558d2b92eb5cdba657c0f6367243c1b85a8 (patch)
tree30da8af5b06a526d5d1047b95a83f47330476c13 /crops/cocoa.lua
parent8a4ca846d90abf5732b436c1f31b72c6b52e61dc (diff)
added player checks for crop placement
Diffstat (limited to 'crops/cocoa.lua')
-rw-r--r--crops/cocoa.lua9
1 files changed, 6 insertions, 3 deletions
diff --git a/crops/cocoa.lua b/crops/cocoa.lua
index 1510b3a..8424db4 100644
--- a/crops/cocoa.lua
+++ b/crops/cocoa.lua
@@ -21,7 +21,7 @@ local function place_cocoa(itemstack, placer, pointed_thing, plantname)
-- am I right-clicking on something that has a custom on_place set?
-- thanks to Krock for helping with this issue :)
local def = minetest.registered_nodes[under.name]
- if def and def.on_rightclick then
+ if placer and def and def.on_rightclick then
return def.on_rightclick(pt.under, under, placer, itemstack)
end
@@ -31,8 +31,11 @@ local function place_cocoa(itemstack, placer, pointed_thing, plantname)
return
end
+ -- is player planting crop?
+ local name = placer:get_player_name() or ""
+
-- check for protection
- if minetest.is_protected(pt.above, placer:get_player_name()) then
+ if minetest.is_protected(pt.above, name) then
return
end
@@ -41,7 +44,7 @@ local function place_cocoa(itemstack, placer, pointed_thing, plantname)
minetest.sound_play("default_place_node", {pos = pt.above, gain = 1.0})
- if not farming.is_creative(placer:get_player_name()) then
+ if placer and not farming.is_creative(placer:get_player_name()) then
itemstack:take_item()