Skip to content

Commit d5d2ef2

Browse files
DanielBolefDaRealCodeWritten
authored andcommitted
Show MW instead of mW
Show MW (Megawatts) instead of mW (Milliwatts)
1 parent 5d57b1e commit d5d2ef2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nuclearesrpc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def find_nucleares() -> psutil.Process | None:
126126
if 0 < pwr < 10000:
127127
status = f"Producing {pwr} kW"
128128
elif pwr > 10000:
129-
status = f"Producing {round(pwr/1000)} mW"
129+
status = f"Producing {round(pwr/1000)} MW"
130130
else:
131131
status = "Generator Offline"
132132
if dvars["CORE_IMMINENT_FUSION"] == "TRUE":

0 commit comments

Comments
 (0)