diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2013-11-05 10:43:50 -0500 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2013-11-05 10:46:49 -0500 |
commit | ee93afd439ec9beaede5be916a55a17c61577684 (patch) | |
tree | e89ce144f2a56bb059e49ac842b9503ddad0bc31 /internal.lua | |
parent | 2b5bf5fe95e388c28a81debfacdb0e8b14ddf355 (diff) |
Fix incorrect background colors over inventory slots
caused by BlockMen's/kahrl's inventory #hexcolor patch
( https://github.com/minetest/minetest/commit/25edae00ea1d5a9af4a6599fc7c200bb810fbd49 )
Diffstat (limited to 'internal.lua')
-rw-r--r-- | internal.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal.lua b/internal.lua index 8753f38..3ea410e 100644 --- a/internal.lua +++ b/internal.lua @@ -32,6 +32,7 @@ function unified_inventory.get_formspec(player, page) if fsdata.draw_inventory ~= false then -- Player inventory + formspec = formspec.."listcolors[#00000000;#00000000]" formspec = formspec .. "list[current_player;main;0,4.5;8,4;]" end |