From a9add85690b8980922ab3401e064334ccba1db52 Mon Sep 17 00:00:00 2001 From: StormFusions <62036454+StormFusions@users.noreply.github.com> Date: Fri, 28 Feb 2025 02:43:16 +0000 Subject: [PATCH] Update reactor.lua --- reactor.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactor.lua b/reactor.lua index b26c37e..2a87a16 100644 --- a/reactor.lua +++ b/reactor.lua @@ -468,7 +468,7 @@ end function drawUpdatedText(x, y, label, value, color) local key = label if lastValues[key] ~= value then - f.draw_text_lr(mon, x, y, 3, " ", " ", colors.white, color, colors.black) + f.draw_text_lr(mon, x, y, 3, " ", " ", colors.white, color, colors.black) f.draw_text_lr(mon, x, y, 3, label, value, colors.white, color, colors.black) lastValues[key] = value end