interval = 1,
chance = 2,
catch_up = false,
- action = default.cool_lava,
+ action = function(...)
+ default.cool_lava(...)
+ end,
})
end
neighbors = {"group:sand"},
interval = 12,
chance = 83,
- action = default.grow_cactus
+ action = function(...)
+ default.grow_cactus(...)
+ end
})
minetest.register_abm({
neighbors = {"default:dirt", "default:dirt_with_grass"},
interval = 14,
chance = 71,
- action = default.grow_papyrus
+ action = function(...)
+ default.grow_papyrus(...)
+ end
})