This commit is contained in:
2025-06-14 14:09:44 -04:00
parent 1ad74c2108
commit 6b95dec394

View File

@@ -2,7 +2,7 @@
local function getValue(reactor)
local kelvin = reactor.getTemperature() or 0
local fahrenheit = (kelvin - 273.15) * 9 / 5 + 32
return fahrenheit
return math.floor(fahrenheit * 100 + 0.5) / 100
end
local function color(reactor)