1
0
mirror of https://github.com/mt-mods/homedecor_modpack.git synced 2025-07-16 04:30:23 +02:00

fix potted-flower model (re-derived it from the standard flowerpot)

delete an obsolete texture.
This commit is contained in:
Vanessa Ezekowitz
2015-06-25 02:57:07 -04:00
parent e67bdcafd3
commit 492f13fd8f
4 changed files with 399 additions and 514 deletions

View File

@ -97,17 +97,18 @@ for i in ipairs(flowers_list) do
homedecor.register("potted_"..flower, {
description = S("Potted flower ("..flowerdesc..")"),
mesh = "homedecor_flowerpot_small.obj",
mesh = "homedecor_potted_plant.obj",
tiles = {
"flowers_"..flower..".png",
"homedecor_potted.png"
"homedecor_flower_pot_terracotta.png",
"default_dirt.png^[colorize:#000000:175",
"flowers_"..flower..".png"
},
walkable = false,
groups = {snappy = 3},
sounds = default.node_sound_glass_defaults(),
selection_box = {
type = "fixed",
fixed = { -0.2, -0.5, -0.2, 0.2, 0.4, 0.2 }
fixed = { -0.2, -0.5, -0.2, 0.2, 0.3, 0.2 }
}
})