diff --git a/code/game/objects/items/devices/radio/encryptionkey.dm b/code/game/objects/items/devices/radio/encryptionkey.dm index 9b8010e209..b3b7159b69 100644 --- a/code/game/objects/items/devices/radio/encryptionkey.dm +++ b/code/game/objects/items/devices/radio/encryptionkey.dm @@ -153,7 +153,7 @@ /obj/item/encryptionkey/heads/rd name = "research director's encryption key" icon_state = "rd_cypherkey" - channels = list(CHANNEL_COMMAND = 1, CHANNEL_SCIENCE = 1) + channels = list(CHANNEL_COMMAND = 1, CHANNEL_SCIENCE = 1, CHANNEL_EXPLORATION = 1) // CHOMPEdit, adds Exploration /obj/item/encryptionkey/ert channels = list(CHANNEL_RESPONSE_TEAM = 1, CHANNEL_SCIENCE = 1, CHANNEL_COMMAND = 1, CHANNEL_MEDICAL = 1, CHANNEL_ENGINEERING = 1, CHANNEL_SECURITY = 1, CHANNEL_SUPPLY = 1, CHANNEL_SERVICE = 1, CHANNEL_EXPLORATION = 1) @@ -164,12 +164,12 @@ /obj/item/encryptionkey/pathfinder name = "pathfinder's encryption key" icon_state = "com_cypherkey" - channels = list(CHANNEL_COMMAND = 1, CHANNEL_EXPLORATION = 1) + channels = list(/*CHANNEL_COMMAND = 1,*/ CHANNEL_EXPLORATION = 1) // CHOMPEdit Remove Command /obj/item/encryptionkey/qm name = "quartermaster's encryption key" icon_state = "qm_cypherkey" - channels = list(CHANNEL_COMMAND = 1, CHANNEL_SUPPLY = 1) + channels = list(/*CHANNEL_COMMAND = 1,*/ CHANNEL_SUPPLY = 1) // CHOMPEdit Remove Command /obj/item/encryptionkey/pilot name = "pilot's encryption key" @@ -177,7 +177,7 @@ channels = list(CHANNEL_EXPLORATION = 1) /obj/item/encryptionkey/explorer - name = "away team's encryption key" + name = "explorer's encryption key" // CHOMPEdit explo keep icon_state = "rob_cypherkey" channels = list(CHANNEL_EXPLORATION = 1) diff --git a/code/game/objects/items/devices/radio/encryptionkey_vr.dm b/code/game/objects/items/devices/radio/encryptionkey_vr.dm deleted file mode 100644 index cd4d714198..0000000000 --- a/code/game/objects/items/devices/radio/encryptionkey_vr.dm +++ /dev/null @@ -1,54 +0,0 @@ -/obj/item/encryptionkey/heads/hop - name = "head of personnel's encryption key" - icon_state = "hop_cypherkey" - channels = list(CHANNEL_SUPPLY = 1, CHANNEL_SERVICE = 1, CHANNEL_COMMAND = 1, CHANNEL_SECURITY = 1) //YW Edit: removes Explorer channel access, not in line with our chain of command. CHOMP: We accept this - -/obj/item/encryptionkey/heads/ai_integrated - name = "ai integrated encryption key" - desc = "Integrated encryption key" - icon_state = "cap_cypherkey" - channels = list(CHANNEL_COMMAND = 1, CHANNEL_SECURITY = 1, CHANNEL_ENGINEERING = 1, CHANNEL_SCIENCE = 1, CHANNEL_MEDICAL = 1, CHANNEL_SUPPLY = 1, CHANNEL_SERVICE = 1, CHANNEL_AI_PRIVATE = 1, CHANNEL_EXPLORATION = 1) - -/obj/item/encryptionkey/heads/captain - name = "site manager's encryption key" - icon_state = "cap_cypherkey" - channels = list(CHANNEL_COMMAND = 1, CHANNEL_SECURITY = 1, CHANNEL_ENGINEERING = 1, CHANNEL_SCIENCE = 1, CHANNEL_MEDICAL = 1, CHANNEL_SUPPLY = 1, CHANNEL_SERVICE = 1, CHANNEL_EXPLORATION = 1) - -/obj/item/encryptionkey/heads/rd - name = "research director's encryption key" - icon_state = "rd_cypherkey" - channels = list(CHANNEL_COMMAND = 1, CHANNEL_SCIENCE = 1, CHANNEL_EXPLORATION = 1) //YW Edit: adds Explorer channel access, to come in line with our chain of command. CHOMP: We accept this - -/obj/item/encryptionkey/ert - channels = list(CHANNEL_RESPONSE_TEAM = 1, CHANNEL_SCIENCE = 1, CHANNEL_COMMAND = 1, CHANNEL_MEDICAL = 1, CHANNEL_ENGINEERING = 1, CHANNEL_SECURITY = 1, CHANNEL_SUPPLY = 1, CHANNEL_SERVICE = 1, CHANNEL_EXPLORATION = 1) - -/obj/item/encryptionkey/omni //Literally only for the admin intercoms - channels = list(CHANNEL_MERCENARY = 1, CHANNEL_RAIDER = 1, CHANNEL_RESPONSE_TEAM = 1, CHANNEL_SCIENCE = 1, CHANNEL_COMMAND = 1, CHANNEL_MEDICAL = 1, CHANNEL_ENGINEERING = 1, CHANNEL_SECURITY = 1, CHANNEL_SUPPLY = 1, CHANNEL_SERVICE = 1, CHANNEL_EXPLORATION = 1) - -/obj/item/encryptionkey/pathfinder - name = "pathfinder's encryption key" - icon_state = "com_cypherkey" - channels = list(CHANNEL_EXPLORATION = 1) //YW Edit: removes command channel access, not in line with our chain of command. CHOMP: We accept this - -/obj/item/encryptionkey/qm - name = "quartermaster's encryption key" - icon_state = "qm_cypherkey" - channels = list(CHANNEL_SUPPLY = 1) //YW Edit: removes command channel access, not in line with our chain of command. CHOMP: We accept this - -/obj/item/encryptionkey/pilot - name = "pilot's encryption key" - icon_state = "cypherkey" - channels = list(CHANNEL_EXPLORATION = 1) - -/obj/item/encryptionkey/explorer - name = "explorer's encryption key" //CHOMP explo keep - icon_state = "rob_cypherkey" - channels = list(CHANNEL_EXPLORATION = 1) - -/obj/item/encryptionkey/sar - name = "fm's encryption key" - icon_state = "med_cypherkey" - channels = list(CHANNEL_MEDICAL = 1, CHANNEL_EXPLORATION = 1) - -/obj/item/encryptionkey/talon - channels = list(CHANNEL_TALON = 1) diff --git a/code/game/objects/items/devices/radio/encryptionkey_yw.dm b/code/game/objects/items/devices/radio/encryptionkey_yw.dm deleted file mode 100644 index 2530ecf88d..0000000000 --- a/code/game/objects/items/devices/radio/encryptionkey_yw.dm +++ /dev/null @@ -1,4 +0,0 @@ -/obj/item/encryptionkey/heads/blueshield - name = "blueshield's encryption key" - icon_state = "hos_cypherkey" - channels = list("Security" = 1, "Command" = 1) diff --git a/modular_chomp/maps/southern_cross/items/encryptionkey_sc.dm b/modular_chomp/maps/southern_cross/items/encryptionkey_sc.dm index ef8ea31ebc..2d30889275 100644 --- a/modular_chomp/maps/southern_cross/items/encryptionkey_sc.dm +++ b/modular_chomp/maps/southern_cross/items/encryptionkey_sc.dm @@ -6,7 +6,7 @@ /obj/item/encryptionkey/explorer name = "explorer radio encryption key" icon_state = "com_cypherkey" - channels = list(CHANNEL_EXPLORATION = 1) // CHOMPEdit + channels = list(CHANNEL_EXPLORATION = 1) /obj/item/encryptionkey/sar name = "sar's encryption key"