From 48935dcde282dd3dab7f01e31177b4b6f60af311 Mon Sep 17 00:00:00 2001 From: Anewbe Date: Thu, 27 Jul 2017 18:52:34 -0500 Subject: [PATCH] Hackfixes the admin intercomm verb --- code/modules/admin/admin.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm index 2f9bca5f01..e3b9ea9b62 100644 --- a/code/modules/admin/admin.dm +++ b/code/modules/admin/admin.dm @@ -673,7 +673,7 @@ proc/admin_notice(var/message, var/rights) //This is basically how death alarms do it var/obj/item/device/radio/headset/a = new /obj/item/device/radio/headset/ert(null) - var/channel = input("Channel for message:","Channel", null) as null|anything in (list("Common") + a.keyslot1.channels + a.keyslot2.channels) + var/channel = input("Channel for message:","Channel", null) as null|anything in (list("Common") + a.keyslot2.channels) // + a.keyslot1.channels if(channel) //They picked a channel var/sender = input("Name of sender (max 75):", "Announcement", "Announcement Computer") as null|text