diff options
author | tenplus1 <kinsellaja@yahoo.com> | 2015-03-01 14:28:51 +0000 |
---|---|---|
committer | tenplus1 <kinsellaja@yahoo.com> | 2015-03-01 14:28:51 +0000 |
commit | 459044fa199c7d259f5c86b8e068c5ac4f76b005 (patch) | |
tree | 3e2d1e9b18897cd00865cbbabfc975707db7f54c /init.lua | |
parent | 0937c77458c7582b64b7a4a91c48721b38917976 (diff) |
Player cannot place seeds in protected area
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -1,5 +1,5 @@ --[[ - Minetest Farming Redo Mod 1.11 (20th Jan 2015) + Minetest Farming Redo Mod 1.12 (1st March 2015) by TenPlus1 ]] @@ -60,11 +60,13 @@ function farming.place_seed(itemstack, placer, pointed_thing, plantname) end -- add the node and remove 1 item from the itemstack - minetest.add_node(pt.above, {name=plantname}) - if not minetest.setting_getbool("creative_mode") then - itemstack:take_item() + if not minetest.is_protected(pt.above, placer:get_player_name()) then + minetest.add_node(pt.above, {name=plantname}) + if not minetest.setting_getbool("creative_mode") then + itemstack:take_item() + end + return itemstack end - return itemstack end -- Single ABM Handles Growing of All Plants |