From bc646ab0d5b402896b9a7bbc43ea0c251ad69adf Mon Sep 17 00:00:00 2001
From: Killian <49700375+KillianKirilenko@users.noreply.github.com>
Date: Mon, 11 Sep 2023 03:44:30 +0100
Subject: [PATCH] fixed tesla examines (again)
---
code/modules/power/singularity/generator.dm | 4 ++--
code/modules/power/tesla/coil.dm | 8 ++++----
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/code/modules/power/singularity/generator.dm b/code/modules/power/singularity/generator.dm
index e0311fdb56e..6e3a6d224df 100644
--- a/code/modules/power/singularity/generator.dm
+++ b/code/modules/power/singularity/generator.dm
@@ -13,9 +13,9 @@
/obj/machinery/the_singularitygen/examine()
. = ..()
if(anchored)
- . += "It is not secured!"
- else
. += "It has been securely bolted down and is ready for operation."
+ else
+ . += "It is not secured!"
/obj/machinery/the_singularitygen/process()
var/turf/T = get_turf(src)
diff --git a/code/modules/power/tesla/coil.dm b/code/modules/power/tesla/coil.dm
index 280e7fd0860..8ff5dfe7532 100644
--- a/code/modules/power/tesla/coil.dm
+++ b/code/modules/power/tesla/coil.dm
@@ -25,9 +25,9 @@
/obj/machinery/power/tesla_coil/examine()
. = ..()
if(anchored)
- . += "It is not secured!"
- else
. += "It has been securely bolted down and is ready for operation."
+ else
+ . += "It is not secured!"
/obj/machinery/power/tesla_coil/New()
..()
@@ -240,9 +240,9 @@
/obj/machinery/power/grounding_rod/examine()
. = ..()
if(anchored)
- . += "It is not secured!"
- else
. += "It has been securely bolted down and is ready for operation."
+ else
+ . += "It is not secured!"
/obj/machinery/power/grounding_rod/pre_mapped
anchored = TRUE