From 5febd2f97f6920c8abf98fd37ff26bf30bdef9c6 Mon Sep 17 00:00:00 2001 From: Kashargul <144968721+Kashargul@users.noreply.github.com> Date: Tue, 3 Dec 2024 11:17:44 +0100 Subject: [PATCH] fix multiple headsets --- code/game/objects/items/devices/radio/headset.dm | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/devices/radio/headset.dm b/code/game/objects/items/devices/radio/headset.dm index ead212defa..296eaddcd7 100644 --- a/code/game/objects/items/devices/radio/headset.dm +++ b/code/game/objects/items/devices/radio/headset.dm @@ -493,6 +493,8 @@ /obj/item/radio/headset/alt/centcom name = "centcom bowman headset" icon_state = "com_headset_alt" + centComm = 1 + ks2type = /obj/item/encryptionkey/ert /obj/item/radio/headset/nanotrasen name = "\improper NT radio headset" @@ -503,6 +505,8 @@ /obj/item/radio/headset/alt/nanotrasen name = "\improper NT bowman headset" icon_state = "nt_headset_alt" + cenComm = 1 + ks2type = /obj/item/encryptionkey/ert /obj/item/radio/headset/pathfinder name = "pathfinder's headset" @@ -513,6 +517,8 @@ /obj/item/radio/headset/alt/pathfinder name = "pathfinder's bowman headset" icon_state = "exp_headset_alt" + adhoc_fallback = TRUE + ks2type = /obj/item/encryptionkey/pathfinder /obj/item/radio/headset/pilot name = "pilot's headset" @@ -522,6 +528,7 @@ /obj/item/radio/headset/alt/pilot name = "pilot's bowman headset" icon_state = "pilot_headset_alt" + adhoc_fallback = TRUE /obj/item/radio/headset/explorer name = "away team member's headset" @@ -532,6 +539,8 @@ /obj/item/radio/headset/alt/explorer name = "away team's bowman headset" icon_state = "exp_headset_alt" + adhoc_fallback = TRUE + ks2type = /obj/item/encryptionkey/explorer /obj/item/radio/headset/sar name = "search and rescue headset" @@ -635,4 +644,4 @@ /obj/item/radio/headset/heads/ai_integrated/receive_range(freq, level) if (disabledAi) return -1 //Transciever Disabled. - return ..(freq, level, 1) \ No newline at end of file + return ..(freq, level, 1)