From 464771094591ee27e078d6800f6179d0d1aa8db2 Mon Sep 17 00:00:00 2001 From: cora Date: Thu, 10 Feb 2022 17:52:11 +0100 Subject: [PATCH] =?UTF-8?q?Extinguish=20fire=20without=20nearby=20?= =?UTF-8?q?=E2=80=9Cfuel=E2=80=9D=20faster?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- mods/ITEMS/mcl_fire/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/ITEMS/mcl_fire/init.lua b/mods/ITEMS/mcl_fire/init.lua index 3926513e..8b606561 100644 --- a/mods/ITEMS/mcl_fire/init.lua +++ b/mods/ITEMS/mcl_fire/init.lua @@ -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)