Use formspec prepend for real

This commit is contained in:
Wuzzy 2019-03-06 06:38:25 +01:00
parent ea0c2e9568
commit 3ca01c3149
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
minetest.register_on_joinplayer(function(player)
local bg = ""--"bgcolor[#080808BB;true]"
local bg = "bgcolor[#080808BB;true]"
local slots = "listcolors[#9990;#FFF7;#FFF0;#000;#FFF]"
local prepend = bg .. slots
-- player:set_formspec_prepend(prepend)
player:set_formspec_prepend(prepend)
end)