mirror of
https://github.com/minetest-mods/moreblocks.git
synced 2025-07-02 08:00:44 +02:00
start to take care of loose ends
This commit is contained in:
16
stairsplus/compat2/init.lua
Normal file
16
stairsplus/compat2/init.lua
Normal file
@ -0,0 +1,16 @@
|
||||
stairsplus.compat = {
|
||||
is_legacy_drawtype = function(node)
|
||||
local def = minetest.registered_nodes[node]
|
||||
return (
|
||||
def.drawtype == "mesh" or
|
||||
def.drawtype == "plantlike"
|
||||
)
|
||||
end
|
||||
}
|
||||
|
||||
stairsplus.dofile("compat", "stairs")
|
||||
stairsplus.dofile("compat", "old_moreblocks")
|
||||
|
||||
-- stairsplus.dofile("compat", "inventory_managers")
|
||||
-- unified_inventory, sfinv, i3
|
||||
|
Reference in New Issue
Block a user