add another legacy drawtype

This commit is contained in:
flux 2022-06-17 16:02:08 -07:00
parent 21f36e6c1c
commit 7f3710d015
1 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,8 @@ stairsplus.compat = {
local def = minetest.registered_nodes[node]
return (
def.drawtype == "mesh" or
def.drawtype == "plantlike"
def.drawtype == "plantlike" or
def.drawtype == "nodebox"
)
end
}