Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Add support for walkable plants
- Loading branch information
Showing
with
4 additions
and
1 deletion.
-
+4
−1
mods/farming/init.lua
|
@@ -30,7 +30,10 @@ minetest.register_abm({ |
|
|
pos.y = pos.y+1 |
|
|
local nn = minetest.get_node(pos).name |
|
|
pos.y = pos.y-1 |
|
|
if minetest.registered_nodes[nn] and minetest.registered_nodes[nn].walkable then |
|
|
if minetest.registered_nodes[nn] and |
|
|
minetest.registered_nodes[nn].walkable and |
|
|
minetest.get_item_group(nn, "plant") == 0 |
|
|
then |
|
|
minetest.set_node(pos, {name="default:dirt"}) |
|
|
end |
|
|
-- check if there is water nearby |
|
|