From 4fdba85eb1bdcbd2133e0a634b14778d5af83f42 Mon Sep 17 00:00:00 2001 From: Niklp <89982526+Niklp09@users.noreply.github.com> Date: Sun, 16 Jul 2023 09:50:46 +0200 Subject: [PATCH] Uniform spacing in drawer formspec (#83) --- lua/api.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/api.lua b/lua/api.lua index 898ff43..2aedd25 100755 --- a/lua/api.lua +++ b/lua/api.lua @@ -35,9 +35,9 @@ drawers.node_box_simple = { {-0.4375, -0.5, -0.5, 0.4375, -0.4375, -0.4375}, } -drawers.drawer_formspec = "size[9,7]" .. +drawers.drawer_formspec = "size[9,6.7]" .. "list[context;upgrades;2,0.5;5,1;]" .. - "list[current_player;main;0,3;9,4;]" .. + "list[current_player;main;0.5,2.5;8,4;]" .. "listring[context;upgrades]" .. "listring[current_player;main]" .. drawers.gui_bg ..