Crafter/mods/main/lava_cooling.lua
2020-04-18 12:37:08 -04:00

23 lines
516 B
Lua

minetest.register_abm({
label = "Lava cooling",
nodenames = {"main:lava"},
neighbors = {"main:water", "main:waterflow"},
interval = 1.0,
chance = 5.0,
catch_up = false,
action = function(pos)
minetest.set_node(pos,{name="nether:obsidian"})
end,
})
minetest.register_abm({
label = "Lava cooling",
nodenames = {"main:lavaflow"},
neighbors = {"main:water", "main:waterflow"},
interval = 1.0,
chance = 5.0,
catch_up = false,
action = function(pos)
minetest.set_node(pos,{name="main:cobble"})
end,
})