mirror of
https://github.com/minetest-mods/magma_conduits.git
synced 2025-01-08 21:47:34 +01:00
12 lines
287 B
Lua
12 lines
287 B
Lua
minetest.register_abm{
|
|
label = "soil burning",
|
|
nodenames = {"group:soil"},
|
|
neighbors = {"default:lava_source", "default:lava_flowing"},
|
|
interval = 10,
|
|
chance = 5,
|
|
action = function(pos)
|
|
minetest.set_node(pos, {name = "default:sand"})
|
|
minetest.check_for_falling(pos)
|
|
end,
|
|
}
|