From: Yutao Yuan Date: Fri, 17 Jun 2016 14:47:43 +0000 (+0800) Subject: Flowers: Fix misaligned waterlily texture X-Git-Tag: 0.4.15~173 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e0bec501f224dbe93387c709c8257b90ae25dda7;p=oweals%2Fminetest_game.git Flowers: Fix misaligned waterlily texture Previously waterlily has misaligned top and bottom textures and looks different when viewed from below. This also hides the flower in bottom texture. --- diff --git a/mods/flowers/init.lua b/mods/flowers/init.lua index 2d8c93e4..2f3cfe1b 100644 --- a/mods/flowers/init.lua +++ b/mods/flowers/init.lua @@ -217,7 +217,7 @@ minetest.register_node("flowers:waterlily", { drawtype = "nodebox", paramtype = "light", paramtype2 = "facedir", - tiles = {"flowers_waterlily.png"}, + tiles = {"flowers_waterlily.png", "flowers_waterlily_bottom.png"}, inventory_image = "flowers_waterlily.png", wield_image = "flowers_waterlily.png", liquids_pointable = true, diff --git a/mods/flowers/textures/flowers_waterlily_bottom.png b/mods/flowers/textures/flowers_waterlily_bottom.png new file mode 100644 index 00000000..3dbeaf40 Binary files /dev/null and b/mods/flowers/textures/flowers_waterlily_bottom.png differ