Remove update pre-0.60 update LBM

This commit is contained in:
cora 2023-10-21 02:53:22 +02:00
parent 9be3b66a84
commit 66358b96d4

View File

@ -613,16 +613,3 @@ minetest.register_lbm({
mcl_furnaces.spawn_flames(pos, node.param2)
end,
})
-- Legacy
minetest.register_lbm({
label = "Update furnace formspecs (0.60.0)",
name = "mcl_furnaces:update_formspecs_0_60_0",
-- Only update inactive furnaces because active ones should update themselves
nodenames = { "mcl_furnaces:furnace" },
run_at_every_load = false,
action = function(pos, node)
local meta = minetest.get_meta(pos)
meta:set_string("formspec", mcl_furnaces.inactive_formspec)
end,
})