mirror of
https://github.com/mt-mods/plantlife_modpack.git
synced 2025-07-17 23:30:35 +02:00
Switch potted flowers to mesh
with model changes by VanessaE
This commit is contained in:
committed by
Vanessa Ezekowitz
parent
8838dea6ab
commit
9d06642599
@ -241,18 +241,17 @@ for i in ipairs(flowers_list) do
|
||||
|
||||
minetest.register_node(":flowers:potted_"..flower, {
|
||||
description = S("Potted "..flowerdesc),
|
||||
drawtype = "plantlike",
|
||||
tiles = { "flowers_potted_"..flower..".png" },
|
||||
inventory_image = "flowers_potted_"..flower..".png",
|
||||
wield_image = "flowers_potted_"..flower..".png",
|
||||
drawtype = "mesh",
|
||||
mesh = "flowers_potted.obj",
|
||||
tiles = { "flowers_potted_"..flower..".png", "flowers_potted.png" },
|
||||
sunlight_propagates = true,
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
groups = { snappy = 3,flammable=2 },
|
||||
sounds = default.node_sound_leaves_defaults(),
|
||||
groups = { snappy = 3, flammable=2 },
|
||||
sounds = default.node_sound_glass_defaults(),
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = { -0.25, -0.5, -0.25, 0.25, 0.5, 0.25 },
|
||||
fixed = { -0.2, -0.5, -0.2, 0.2, 0.4, 0.2 },
|
||||
},
|
||||
})
|
||||
|
||||
|
Reference in New Issue
Block a user