forked from mtcontrib/farming
fixed mutiple seed placement bug
This commit is contained in:
parent
4b413ccb36
commit
851234eb2c
3
init.lua
3
init.lua
@ -55,7 +55,8 @@ function farming.place_seed(itemstack, placer, pointed_thing, plantname)
|
|||||||
|
|
||||||
-- can I replace above node, and am I pointing at soil
|
-- can I replace above node, and am I pointing at soil
|
||||||
if not minetest.registered_nodes[above.name].buildable_to
|
if not minetest.registered_nodes[above.name].buildable_to
|
||||||
or minetest.get_item_group(under.name, "soil") < 2 then
|
or minetest.get_item_group(under.name, "soil") < 2
|
||||||
|
or minetest.get_item_group(above.name, "plant") ~= 0 then -- ADDED this line for multiple seed placement bug
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user