mirror of
https://git.minetest.land/Mineclonia/Mineclonia.git
synced 2024-11-23 15:25:11 +00:00
Extinguish fire without nearby “fuel” faster
This patch adjusts how often the ABM runs that removes fire nodes with no adjacent nodes that can burn up. This makes fire linger less in air.
This commit is contained in:
parent
5d09ec311c
commit
4647710945
1 changed files with 2 additions and 2 deletions
|
@ -422,8 +422,8 @@ else -- Fire enabled
|
|||
minetest.register_abm({
|
||||
label = "Remove fires",
|
||||
nodenames = {"mcl_fire:fire"},
|
||||
interval = 12,
|
||||
chance = 4,
|
||||
interval = 7,
|
||||
chance = 3,
|
||||
catch_up = false,
|
||||
action = function(pos)
|
||||
local p=has_flammable(pos)
|
||||
|
|
Loading…
Reference in a new issue