shorten globe coll/sel box code a bit

This commit is contained in:
Vanessa Ezekowitz 2015-01-02 04:41:01 -05:00
parent 8cf3db8aae
commit b3cd8e45fb
1 changed files with 7 additions and 8 deletions

View File

@ -1926,6 +1926,11 @@ minetest.register_node("homedecor:calendar", {
sounds = default.node_sound_defaults(),
})
local globe_cbox = {
type = "fixed",
fixed = { -0.4, -0.5, -0.3, 0.3, 0.3, 0.3 }
}
minetest.register_node("homedecor:desk_globe", {
description = "Desk globe",
drawtype = "mesh",
@ -1934,14 +1939,8 @@ minetest.register_node("homedecor:desk_globe", {
inventory_image = "homedecor_desk_globe_inv.png",
paramtype = "light",
paramtype2 = "facedir",
selection_box = {
type = "fixed",
fixed = { -0.4, -0.5, -0.3, 0.3, 0.3, 0.3 }
},
collision_box = {
type = "fixed",
fixed = { -0.4, -0.5, -0.3, 0.3, 0.3, 0.3 }
},
selection_box = globe_cbox,
collision_box = globe_cbox,
groups = {choppy=2},
sounds = default.node_sound_defaults(),
})