mirror of
https://github.com/minetest-mods/moreblocks.git
synced 2024-11-15 23:10:18 +01:00
18 lines
393 B
Lua
18 lines
393 B
Lua
stairsplus.compat = {
|
|
is_legacy_drawtype = function(node)
|
|
local def = minetest.registered_nodes[node]
|
|
return (
|
|
def.drawtype == "mesh" or
|
|
def.drawtype == "plantlike" or
|
|
def.drawtype == "nodebox"
|
|
)
|
|
end
|
|
}
|
|
|
|
stairsplus.dofile("compat2", "stairs")
|
|
stairsplus.dofile("compat2", "old_moreblocks")
|
|
|
|
-- stairsplus.dofile("compat", "inventory_managers")
|
|
-- unified_inventory, sfinv, i3
|
|
|