From 490e929bae2db5cabd33827b8b8a1c62ac8578c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=9B=88=E1=9B=9F=E1=9A=B2=E1=9A=B2=E1=9B=96=E1=9B=8F?= =?UTF-8?q?=E1=9B=8B?= <55299415+Pockets-byte@users.noreply.github.com> Date: Tue, 10 Sep 2024 07:58:12 -0600 Subject: [PATCH] Update subspacecooling.dm --- .../ship_weapons/energy_weapons/subspacecooling.dm | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/nsv13/code/modules/munitions/ship_weapons/energy_weapons/subspacecooling.dm b/nsv13/code/modules/munitions/ship_weapons/energy_weapons/subspacecooling.dm index cd0f604d054..b88406d68d0 100644 --- a/nsv13/code/modules/munitions/ship_weapons/energy_weapons/subspacecooling.dm +++ b/nsv13/code/modules/munitions/ship_weapons/energy_weapons/subspacecooling.dm @@ -54,10 +54,15 @@ . = ..() if(on) . += "The power is on" + + if(!on) + . += "The power is off" + if(parent) - . += "The thermal subspace transcever is linked" - else - . += "it's completely inactive" + . += "The thermal transcever is linked" + + if(!parent) + . += "The thermal transcever is waiting for pairing" /obj/machinery/cooling/update_icon()