Charakterbewegungen hinzugefügt, Deko hinzugefügt, Kochrezepte angepasst
This commit is contained in:
parent
95945c0306
commit
a0c893ca0b
1124 changed files with 64294 additions and 763 deletions
19
mods/moreblocks/stairsplus/compat/init.lua
Normal file
19
mods/moreblocks/stairsplus/compat/init.lua
Normal file
|
@ -0,0 +1,19 @@
|
|||
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,
|
||||
is_legacy_paramtype2 = function(node)
|
||||
local def = minetest.registered_nodes[node]
|
||||
return (
|
||||
def.paramtype2 == "color"
|
||||
or def.paramtype2 == "colorwallmounted"
|
||||
or def.paramtype2 == "glasslikeliquidlevel"
|
||||
)
|
||||
end,
|
||||
}
|
||||
|
||||
stairsplus.dofile("compat", "i3")
|
||||
stairsplus.dofile("compat", "unified_inventory")
|
||||
|
||||
stairsplus.dofile("compat", "old_moreblocks")
|
Loading…
Add table
Add a link
Reference in a new issue