Fix variable name

This commit is contained in:
teknomunk 2024-05-29 06:50:02 -05:00
parent f621e3c1de
commit 6c8771485c
1 changed files with 2 additions and 1 deletions

View File

@ -435,10 +435,11 @@ minetest.register_abm{
}
minetest.register_lbm({
label = "Update beacon formspecs (0.87.1)",
name = "mcl_beacons:update_beacon_formspecs_0_87_1",
nodenames = { "mcl_beacons:beacon" },
action = function(pos)
local meta = minetest.get_meta(pos)
meta:set_string("formspec", form)
meta:set_string("formspec", formspec_string)
end
})