2024-06-08 16:12:55 -06:00

11 lines
260 B
Lua

minetest.register_abm({
label = "Sponge Loop",
nodenames = {"pyutest_core:water_source", "pyutest_core:water_flowing"},
neighbors = {"pyutest_core:sponge"},
interval = 0.1,
chance = 1,
action = function (pos)
minetest.remove_node(pos)
end
})