From a879a89740be190d6e903c079eaefd4e4c641bac Mon Sep 17 00:00:00 2001 From: Cinecom <42314202+Cinecom@users.noreply.github.com> Date: Tue, 13 May 2025 11:46:55 +0200 Subject: [PATCH] Fixed small bug --- Main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Main.lua b/Main.lua index f822563..adbe386 100644 --- a/Main.lua +++ b/Main.lua @@ -990,7 +990,7 @@ function ConsumesManager_UpdateManagerContent() label:SetTextColor(1, 0, 0) -- Red elseif totalCount < 10 then label:SetTextColor(1, 0.4, 0) -- Orange - elseif totalCount <= 20 then + elseif totalCount <= 19 then label:SetTextColor(1, 0.85, 0) -- Yellow else label:SetTextColor(0, 1, 0) -- Green