From 75bfb16cdba60412dae8e4439a1f0018ec88841c Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sat, 20 Jun 2020 16:34:39 +0200 Subject: [PATCH] Fix weak wall torches not burning out --- mods/default/functions.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/default/functions.lua b/mods/default/functions.lua index 54f07a2..66355b6 100644 --- a/mods/default/functions.lua +++ b/mods/default/functions.lua @@ -428,7 +428,7 @@ minetest.register_abm( -- papyrus grows minetest.register_abm( -- weak torchs burn out and die after ~3 minutes { label = "Burning out weak torches", - nodenames = {"default:torch_weak"}, + nodenames = {"default:torch_weak", "default:torch_weak_wall"}, interval = 3, chance = 60, action = function(pos, node)