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.
master
cora 2022-02-10 17:52:11 +01:00 committed by Nils Dagsson Moskopp
parent 5d09ec311c
commit 4647710945
No known key found for this signature in database
GPG Key ID: A3BC671C35191080
1 changed files with 2 additions and 2 deletions

View File

@ -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)