Skip to content
Snippets Groups Projects
Commit d5c373e2 authored by PilzAdam's avatar PilzAdam
Browse files

Make it possible to override the default.cool_lava_* functions

parent 4c5cb106
No related branches found
No related tags found
No related merge requests found
......@@ -2028,7 +2028,9 @@ minetest.register_abm({
neighbors = {"group:water"},
interval = 1,
chance = 1,
action = default.cool_lava_flowing,
action = function(pos, node, active_object_count, active_object_count_wider)
default.cool_lava_flowing(pos, node, active_object_count, active_object_count_wider)
end,
})
minetest.register_abm({
......@@ -2036,7 +2038,9 @@ minetest.register_abm({
neighbors = {"group:water"},
interval = 1,
chance = 1,
action = default.cool_lava_source,
action = function(pos, node, active_object_count, active_object_count_wider)
default.cool_lava_source(pos, node, active_object_count, active_object_count_wider)
end,
})
-- END
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment