Slowly turn grass path below solid node to dirt

This commit is contained in:
Wuzzy 2017-05-14 22:25:56 +02:00
parent 5dbf2beb6a
commit d20de89780
1 changed files with 15 additions and 0 deletions

View File

@ -445,6 +445,21 @@ minetest.register_abm({
end
})
minetest.register_abm({
label = "Turn Grass Path below solid block into Dirt",
nodenames = {"mcl_core:grass_path"},
neighbors = {"group:solid"},
interval = 8,
chance = 50,
action = function(pos, node)
local above = {x = pos.x, y = pos.y + 1, z = pos.z}
local name = minetest.get_node(above).name
local nodedef = minetest.registered_nodes[name]
if name ~= "ignore" and nodedef and (nodedef.groups and nodedef.groups.solid) then
minetest.set_node(pos, {name = "mcl_core:dirt"})
end
end
})
--------------------------
-- Try generate tree ---