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

made potted flowers directly reference minetest_game flower images where possible.

This commit is contained in:
Vanessa Ezekowitz
2015-06-21 21:03:09 -04:00
parent fd741795f4
commit e67bdcafd3
9 changed files with 4 additions and 1 deletions

View File

@ -98,7 +98,10 @@ for i in ipairs(flowers_list) do
homedecor.register("potted_"..flower, {
description = S("Potted flower ("..flowerdesc..")"),
mesh = "homedecor_flowerpot_small.obj",
tiles = {"homedecor_potted_"..flower..".png", "homedecor_potted.png"},
tiles = {
"flowers_"..flower..".png",
"homedecor_potted.png"
},
walkable = false,
groups = {snappy = 3},
sounds = default.node_sound_glass_defaults(),