From 79629fad0cce4b3507f5cb49569942476e7cf36c Mon Sep 17 00:00:00 2001 From: ikarrus Date: Thu, 21 Nov 2013 20:13:42 -0700 Subject: [PATCH] Sets frequency of spec ops officer radios to 144.1 so they can communicate with deathsquads, who are also set to that frequency. Mostly for my own conveneience. --- code/modules/admin/verbs/debug.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index 3fc9a3fcd93..197756fefc7 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -924,11 +924,14 @@ var/global/list/g_fancy_list_of_safe_types = null M.equip_to_slot_or_del(W, slot_wear_id) if("special ops officer") + var/obj/item/device/radio/headset/R = new /obj/item/device/radio/headset/headset_cent(M) + R.set_frequency(1441) + M.equip_to_slot_or_del(R, slot_ears) + M.equip_to_slot_or_del(new /obj/item/clothing/under/syndicate/combat(M), slot_w_uniform) M.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/swat/officer(M), slot_wear_suit) M.equip_to_slot_or_del(new /obj/item/clothing/shoes/swat/combat(M), slot_shoes) M.equip_to_slot_or_del(new /obj/item/clothing/gloves/combat(M), slot_gloves) - M.equip_to_slot_or_del(new /obj/item/device/radio/headset/headset_cent(M), slot_ears) M.equip_to_slot_or_del(new /obj/item/clothing/glasses/thermal/eyepatch(M), slot_glasses) M.equip_to_slot_or_del(new /obj/item/clothing/mask/cigarette/cigar/havana(M), slot_wear_mask) M.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/space/deathsquad/beret(M), slot_head)