2019-03-06 07:35:24 +02:00
|
|
|
minetest.register_on_joinplayer(function(player)
|
2019-03-06 07:38:25 +02:00
|
|
|
local bg = "bgcolor[#080808BB;true]"
|
2019-03-06 07:35:24 +02:00
|
|
|
local slots = "listcolors[#9990;#FFF7;#FFF0;#000;#FFF]"
|
|
|
|
local prepend = bg .. slots
|
2019-03-06 07:38:25 +02:00
|
|
|
player:set_formspec_prepend(prepend)
|
2019-03-06 07:35:24 +02:00
|
|
|
end)
|