mirror of
https://github.com/minetest-mods/magma_conduits.git
synced 2024-12-21 04:55:40 +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,
|
||
|
}
|