forked from minetest/minetest_game
Lavacooling: Return to chance = 2
Return to previous parameters interval = 1, chance = 2. Compensates for the increase in default active block radius. Large amounts of lava cooling at once is known to overload sound creation, producing error messages.
This commit is contained in:
parent
1ec31d8472
commit
d5f1f964e3
|
@ -136,7 +136,7 @@ minetest.register_abm({
|
|||
nodenames = {"default:lava_source", "default:lava_flowing"},
|
||||
neighbors = {"group:cools_lava", "group:water"},
|
||||
interval = 1,
|
||||
chance = 1,
|
||||
chance = 2,
|
||||
catch_up = false,
|
||||
action = function(...)
|
||||
default.cool_lava(...)
|
||||
|
|
Loading…
Reference in New Issue
Block a user