From d6c00db07aa7018ce2e96ee32d5947afe549d0b4 Mon Sep 17 00:00:00 2001 From: Daniel Bolef Date: Wed, 12 Feb 2025 04:59:46 -0600 Subject: [PATCH] Show MW instead of mW Show MW (Megawatts) instead of mW (Milliwatts) --- nuclearesrpc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nuclearesrpc.py b/nuclearesrpc.py index 815007a..7b4add6 100644 --- a/nuclearesrpc.py +++ b/nuclearesrpc.py @@ -126,7 +126,7 @@ def find_nucleares() -> psutil.Process | None: if 0 < pwr < 10000: status = f"Producing {pwr} kW" elif pwr > 10000: - status = f"Producing {round(pwr/1000)} mW" + status = f"Producing {round(pwr/1000)} MW" else: status = "Generator Offline" if dvars["CORE_IMMINENT_FUSION"] == "TRUE":