Multimeter now displays Kelvin temperature instead in favor of GUI

This commit is contained in:
Calclavia 2014-02-22 22:12:45 +08:00
parent 4516bd472d
commit f1f7cb56f0

View file

@ -95,7 +95,7 @@ public class MultimeterNetwork extends Network<MultimeterNetwork, PartMultimeter
graphValue = UnitDisplay.getDisplay(fluidGraph.get(), Unit.LITER);
if (graph == thermalGraph)
graphValue = UnitDisplay.roundDecimals(thermalGraph.get() - 273) + " C";
graphValue = UnitDisplay.roundDecimals(thermalGraph.get()) + " K";
return graph.name + ": " + graphValue;