Skip to content
Snippets Groups Projects
Commit 851234eb authored by tenplus1's avatar tenplus1
Browse files

fixed mutiple seed placement bug

parent 4b413ccb
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,8 @@ function farming.place_seed(itemstack, placer, pointed_thing, plantname)
-- can I replace above node, and am I pointing at soil
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
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment