abstract common nodebox forms, fixing some ignored ones in the process

This commit is contained in:
Tim
2015-01-23 17:40:57 +01:00
committed by Vanessa Ezekowitz
parent 6245956ba4
commit b5188493cc
17 changed files with 114 additions and 259 deletions

View File

@ -20,10 +20,7 @@ minetest.register_node("homedecor:washing_machine", {
{-0.5, -0.5, 0.3125, 0.5, 0.5, 0.5},
}
},
selection_box = {
type = "fixed",
fixed = { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5 }
},
selection_box = { type = "regular" },
groups = { snappy = 3 },
})
@ -47,10 +44,7 @@ minetest.register_node("homedecor:dryer", {
{-0.5, -0.5, 0.3125, 0.5, 0.5, 0.5},
}
},
selection_box = {
type = "fixed",
fixed = { -0.5, -0.5, -0.5, 0.5, 0.5, 0.5 }
},
selection_box = { type = "regular" },
groups = { snappy = 3 },
})