From e1c99bc27a44957c47b3381a3739c7bfcc507374 Mon Sep 17 00:00:00 2001 From: Ikarrus Date: Sat, 13 Jun 2015 10:33:05 -0600 Subject: [PATCH 1/2] You can use the communications console on Z2 Mostly so Captains can continue to make announcements. --- code/game/machinery/computer/communications.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/computer/communications.dm b/code/game/machinery/computer/communications.dm index c335d4ad6f6..ce45b070253 100644 --- a/code/game/machinery/computer/communications.dm +++ b/code/game/machinery/computer/communications.dm @@ -49,7 +49,7 @@ var/const/CALL_SHUTTLE_REASON_LENGTH = 12 /obj/machinery/computer/communications/Topic(href, href_list) if(..()) return - if (src.z > ZLEVEL_STATION) + if (src.z > 2) //Can only use on centcom and SS13 usr << "Unable to establish a connection: \black You're too far away from the station!" return usr.set_machine(src) From 6bafd88ced8afcab347dccafabde2ba3f4bdb3a3 Mon Sep 17 00:00:00 2001 From: Ikarrus Date: Sat, 13 Jun 2015 10:39:01 -0600 Subject: [PATCH 2/2] ZLEVEL_CENTCOM --- code/game/machinery/computer/communications.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/computer/communications.dm b/code/game/machinery/computer/communications.dm index ce45b070253..1279f4ac9d0 100644 --- a/code/game/machinery/computer/communications.dm +++ b/code/game/machinery/computer/communications.dm @@ -49,7 +49,7 @@ var/const/CALL_SHUTTLE_REASON_LENGTH = 12 /obj/machinery/computer/communications/Topic(href, href_list) if(..()) return - if (src.z > 2) //Can only use on centcom and SS13 + if (src.z > ZLEVEL_CENTCOM) //Can only use on centcom and SS13 usr << "Unable to establish a connection: \black You're too far away from the station!" return usr.set_machine(src)