From ac25d1b851b8b2153c8a11124a84f9192c9b0540 Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Sun, 28 Apr 2013 01:59:48 -0400 Subject: [PATCH] Use homedecor_blanktile.png on the top face of bottom half of door and vice versa. Gets rid of the visual division between the two halves of the glass door. --- doors_and_gates.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doors_and_gates.lua b/doors_and_gates.lua index 6f83d65f..7864a11a 100644 --- a/doors_and_gates.lua +++ b/doors_and_gates.lua @@ -34,7 +34,7 @@ for i in ipairs(sides) do local tiles_top = { "homedecor_door_"..doorname.."_tb.png", - "homedecor_door_"..doorname.."_tb.png", + "homedecor_blanktile.png", "homedecor_door_"..doorname.."_lrt.png", "homedecor_door_"..doorname.."_lrt.png", "homedecor_door_"..doorname.."_"..rside.."_top.png", @@ -42,7 +42,7 @@ for i in ipairs(sides) do } local tiles_bottom = { - "homedecor_door_"..doorname.."_tb.png", + "homedecor_blanktile.png", "homedecor_door_"..doorname.."_tb.png", "homedecor_door_"..doorname.."_lrb.png", "homedecor_door_"..doorname.."_lrb.png",