From c46244e7edf7adc3df449c12077380ce21405960 Mon Sep 17 00:00:00 2001 From: badgamernl Date: Fri, 11 Sep 2020 20:48:35 +0200 Subject: [PATCH] Fix floating text position --- modules/gui/autofill.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gui/autofill.lua b/modules/gui/autofill.lua index c80ea2d4..f89a8c98 100644 --- a/modules/gui/autofill.lua +++ b/modules/gui/autofill.lua @@ -330,7 +330,7 @@ local function entity_build(event) local item_amount = player_inventory.get_item_count(item.name) if item_amount ~= 0 then local inserted - text_position.y = text_position.y - 0.2 + text_position.y = text_position.y - 0.5 local color = { r = 0, g = 255, b = 0, a = 1} if item_amount >= preferd_amount then -- Can item be inserted? no, goto next item!