mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-15 15:41:06 +01:00
Added LBM
This commit is contained in:
parent
4b2a82e5b8
commit
819dbc6224
1 changed files with 10 additions and 0 deletions
|
@ -1409,3 +1409,13 @@ minetest.register_lbm({
|
|||
meta:set_string("formspec", formspec_shulker_box)
|
||||
end,
|
||||
})
|
||||
|
||||
minetest.register_lbm({
|
||||
label = "Upgrade old ender chest formspec",
|
||||
name = "mcl_chests:replace_old_ender_form",
|
||||
nodenames = {"mcl_chests:ender_chest_small"},
|
||||
run_at_every_load = false,
|
||||
action = function(pos, node)
|
||||
minetest.get_meta(pos):set_string("formspec", "")
|
||||
end,
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue