From 93a620eee9ecaf068788e1427fabb57fd865fa3f Mon Sep 17 00:00:00 2001 From: StormFusions <62036454+StormFusions@users.noreply.github.com> Date: Fri, 28 Feb 2025 02:39:35 +0000 Subject: [PATCH] Forgot to remove the version and fixed the clear line monitor --- reactor.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/reactor.lua b/reactor.lua index fcc0e54..b26c37e 100644 --- a/reactor.lua +++ b/reactor.lua @@ -149,7 +149,6 @@ end function save_config() sw = fs.open("reactorconfig.txt", "w") - sw.writeLine(version) sw.writeLine(autoInputGate) sw.writeLine(curInputGate) sw.close() @@ -469,7 +468,7 @@ end function drawUpdatedText(x, y, label, value, color) local key = label if lastValues[key] ~= value then - f.draw_text(mon, x, y, " ", colors.white, 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