Fix weak wall torches not burning out

This commit is contained in:
Wuzzy 2020-06-20 16:34:39 +02:00
parent db8109d74e
commit 75bfb16cdb

View File

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