From 5f13f8529562046d68c7f77a2fe4ff9190c93728 Mon Sep 17 00:00:00 2001 From: StormFusions <62036454+StormFusions@users.noreply.github.com> Date: Sat, 15 May 2021 22:54:52 +0100 Subject: [PATCH] Add files via upload --- reactor.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactor.lua b/reactor.lua index b8212b9..f665a87 100644 --- a/reactor.lua +++ b/reactor.lua @@ -324,8 +324,8 @@ function reactorInfoScreen() if ri.temperature >= 5000 and ri.temperature <= 6500 then tempColor = colors.orange end f.draw_text_lr(mon, 4, 7, 3, "Temperature:", f.format_int(ri.temperature).."C", colors.white, tempColor, colors.black) - f.draw_text_lr(mon, 4, 9, 3, "Output Gate:", f.format_int(fluxgate.getSignalLowFlow()).." rf/t", colors.white, colors.blue, colors.black) - f.draw_text_lr(mon, 4, 10, 3, "Input Gate:", f.format_int(inputFluxgate.getSignalLowFlow()).." rf/t", colors.white, colors.blue, colors.black) + f.draw_text_lr(mon, 4, 9, 3, "Output Gate:", f.format_int(fluxgate.getSignalLowFlow()).." rf/t", colors.white, colors.lightBlue, colors.black) + f.draw_text_lr(mon, 4, 10, 3, "Input Gate:", f.format_int(inputFluxgate.getSignalLowFlow()).." rf/t", colors.white, colors.lightBlue, colors.black) local satPercent satPercent = math.ceil(ri.energySaturation / ri.maxEnergySaturation * 10000)*.01