Re-add MTG: Trim out the remaining bloat from default

This commit is contained in:
LoneWolfHT 2020-09-22 15:48:35 -07:00
parent 65652ec405
commit 779e0973a6
7 changed files with 1 additions and 91 deletions

View file

@ -73,9 +73,6 @@ for _, chest_color in pairs(colors) do
local formspec = table.concat({
"size[8,12]",
default.gui_bg,
default.gui_bg_img,
default.gui_slots,
default.get_hotbar_bg(0,7.85),
"list[current_player;main;0,7.85;8,1;]",
"list[current_player;main;0,9.08;8,3;8]",

View file

@ -5,8 +5,6 @@ function map_maker.show_gui(name)
local formspec = {
"size[9,9.5]",
"bgcolor[#080808BB;true]",
default.gui_bg,
default.gui_bg_img,
"label[0,0;1. Select Area]",
"field[0.4,1;1,1;posx;X;", context.center.x, "]",
@ -57,8 +55,7 @@ end
function map_maker.show_progress_formspec(name, text)
minetest.show_formspec(name, "ctf_map:progress",
"size[6,1]bgcolor[#080808BB;true]" ..
default.gui_bg ..
default.gui_bg_img .. "label[0,0;" ..
"label[0,0;" ..
minetest.formspec_escape(text) .. "]")
end