From 0323344c4ec388d1595af19d26543c8e0c09adc5 Mon Sep 17 00:00:00 2001 From: Ikarrus Date: Sat, 25 May 2013 10:16:14 -0600 Subject: [PATCH 1/4] Removed HoP's security radio access So we have the problem of some HoPs disregarding their jobs just to act like security/p2w right? I was thinking removing the HoP's sec radio channel would help I feel like sec radio is just a remnant of old code and design and his role has since become more specialized I don't feel he needs it, and it would help distance him from security --- .../items/devices/radio/encryptionkey.dm | 18 +++--------------- .../objects/items/devices/radio/headset.dm | 2 +- 2 files changed, 4 insertions(+), 16 deletions(-) diff --git a/code/game/objects/items/devices/radio/encryptionkey.dm b/code/game/objects/items/devices/radio/encryptionkey.dm index fde473ff016..874b8bc7b81 100644 --- a/code/game/objects/items/devices/radio/encryptionkey.dm +++ b/code/game/objects/items/devices/radio/encryptionkey.dm @@ -42,7 +42,7 @@ name = "Robotics Radio Encryption Key" desc = "An encyption key for a radio headset. Contains cypherkeys." icon_state = "rob_cypherkey" - channels = list("Engineering" = 1, "Science" = 1) + channels = list("Science" = 1, "Engineering" = 1) /obj/item/device/encryptionkey/headset_med name = "Medical Radio Encryption Key" @@ -60,7 +60,7 @@ name = "Medical Research Radio Encryption Key" desc = "An encyption key for a radio headset. Contains cypherkeys." icon_state = "medsci_cypherkey" - channels = list("Medical" = 1, "Science" = 1) + channels = list("Science" = 1, "Medical" = 1) /obj/item/device/encryptionkey/headset_com name = "Command Radio Encryption Key" @@ -102,20 +102,8 @@ name = "Head of Personnel's Encryption Key" desc = "An encyption key for a radio headset. Contains cypherkeys." icon_state = "hop_cypherkey" - channels = list("Supply" = 1, "Command" = 1, "Service" = 1, "Security" = 0) -/* -/obj/item/device/encryptionkey/headset_mine - name = "Mining Radio Encryption Key" - desc = "An encyption key for a radio headset. Contains cypherkeys." - icon_state = "mine_cypherkey" - channels = list("Mining" = 1) + channels = list("Supply" = 1, "Service" = 1, "Command" = 1) -/obj/item/device/encryptionkey/heads/qm - name = "Quartermaster's Encryption Key" - desc = "An encyption key for a radio headset. Contains cypherkeys." - icon_state = "qm_cypherkey" - channels = list("Cargo" = 1, "Mining" = 1) -*/ /obj/item/device/encryptionkey/headset_cargo name = "Supply Radio Encryption Key" desc = "An encyption key for a radio headset. Contains cypherkeys." diff --git a/code/game/objects/items/devices/radio/headset.dm b/code/game/objects/items/devices/radio/headset.dm index c9adef0d22d..b1a38043282 100644 --- a/code/game/objects/items/devices/radio/headset.dm +++ b/code/game/objects/items/devices/radio/headset.dm @@ -130,7 +130,7 @@ /obj/item/device/radio/headset/heads/hop name = "head of personnel's headset" - desc = "The headset of the guy who will one day be captain. Channels are as follows: :u - supply, :v - service, :c - command, :s - security" + desc = "The headset of the guy who will one day be captain. Channels are as follows: :u - supply, :v - service, :c - command." icon_state = "com_headset" item_state = "headset" keyslot2 = new /obj/item/device/encryptionkey/heads/hop From 7aae484760b8a8a3121c90b6f509c11006423360 Mon Sep 17 00:00:00 2001 From: Ikarrus Date: Sat, 25 May 2013 10:24:16 -0600 Subject: [PATCH 2/4] Updated changeloog --- html/changelog.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/html/changelog.html b/html/changelog.html index 9570164d767..39509a2b607 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -49,6 +49,13 @@ should be listed in the changelog upon commit tho. Thanks. --> +
+

25 May 2013

+

Ikarrus updated:

+
    +
  • CentCom announced some minor restructuring within Space Station 13's command structure. Most notable of these changes is the removal of the Head of Personnel's access to the security radio channel. CentCom officials have stated the intention was to make the HoP's role more specialized and less partial towards security.
  • +
+

11 May 2013

From 6bb2c54b974c1d081c72f9e57587261ede3e2d3d Mon Sep 17 00:00:00 2001 From: Ikarrus Date: Sat, 25 May 2013 10:28:24 -0600 Subject: [PATCH 3/4] Might as well remove some unusable headsets in the process --- code/game/objects/items/devices/radio/headset.dm | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/code/game/objects/items/devices/radio/headset.dm b/code/game/objects/items/devices/radio/headset.dm index b1a38043282..a5570dc567b 100644 --- a/code/game/objects/items/devices/radio/headset.dm +++ b/code/game/objects/items/devices/radio/headset.dm @@ -134,21 +134,7 @@ icon_state = "com_headset" item_state = "headset" keyslot2 = new /obj/item/device/encryptionkey/heads/hop -/* -/obj/item/device/radio/headset/headset_mine - name = "mining radio headset" - desc = "Headset used by miners. How useless. To access the mining channel, use :d." - icon_state = "mine_headset" - item_state = "headset" - keyslot2 = new /obj/item/device/encryptionkey/headset_mine -/obj/item/device/radio/headset/heads/qm - name = "quartermaster's headset" - desc = "The headset of the man who control your toiletpaper supply. To access the cargo channel, use :q. For mining, use :d." - icon_state = "cargo_headset" - item_state = "headset" - keyslot2 = new /obj/item/device/encryptionkey/heads/qm -*/ /obj/item/device/radio/headset/headset_cargo name = "supply radio headset" desc = "A headset used by the QM and his slaves. To access the supply channel, use :u." From 117f8c153b02aef703cd738cb80cc769a6b53ba5 Mon Sep 17 00:00:00 2001 From: Ikarrus Date: Tue, 28 May 2013 00:46:22 -0600 Subject: [PATCH 4/4] Added instructions to access the channels on encryption keys. This helps for security officers, who often have channels that are not labelled on their headset. --- .../items/devices/radio/encryptionkey.dm | 32 +++++++++---------- 1 file changed, 15 insertions(+), 17 deletions(-) diff --git a/code/game/objects/items/devices/radio/encryptionkey.dm b/code/game/objects/items/devices/radio/encryptionkey.dm index 3ccdb72c407..5016ad369e9 100644 --- a/code/game/objects/items/devices/radio/encryptionkey.dm +++ b/code/game/objects/items/devices/radio/encryptionkey.dm @@ -28,92 +28,90 @@ /obj/item/device/encryptionkey/headset_sec name = "Security Radio Encryption Key" - desc = "An encryption key for a radio headset. Contains cypherkeys." + desc = "An encryption key for a radio headset. To access the security channel, use :s." icon_state = "sec_cypherkey" channels = list("Security" = 1) /obj/item/device/encryptionkey/headset_eng name = "Engineering Radio Encryption Key" - desc = "An encryption key for a radio headset. Contains cypherkeys." + desc = "An encryption key for a radio headset. To access the engineering channel, use :e." icon_state = "eng_cypherkey" channels = list("Engineering" = 1) /obj/item/device/encryptionkey/headset_rob name = "Robotics Radio Encryption Key" - desc = "An encryption key for a radio headset. Contains cypherkeys." + desc = "An encryption key for a radio headset. To access the engineering channel, use :e. For research, use :n." icon_state = "rob_cypherkey" channels = list("Science" = 1, "Engineering" = 1) /obj/item/device/encryptionkey/headset_med name = "Medical Radio Encryption Key" - desc = "An encryption key for a radio headset. Contains cypherkeys." + desc = "An encryption key for a radio headset. To access the medical channel, use :m." icon_state = "med_cypherkey" channels = list("Medical" = 1) /obj/item/device/encryptionkey/headset_sci name = "Science Radio Encryption Key" - desc = "An encryption key for a radio headset. Contains cypherkeys." + desc = "An encryption key for a radio headset. To access the science channel, use :n." icon_state = "sci_cypherkey" channels = list("Science" = 1) /obj/item/device/encryptionkey/headset_medsci name = "Medical Research Radio Encryption Key" - desc = "An encryption key for a radio headset. Contains cypherkeys." + desc = "An encryption key for a radio headset. To access the medical channel, use :m. For science, use :n." icon_state = "medsci_cypherkey" channels = list("Science" = 1, "Medical" = 1) /obj/item/device/encryptionkey/headset_com name = "Command Radio Encryption Key" - desc = "An encryption key for a radio headset. Contains cypherkeys." + desc = "An encryption key for a radio headset. To access the command channel, use :c." icon_state = "com_cypherkey" channels = list("Command" = 1) /obj/item/device/encryptionkey/heads/captain name = "Captain's Encryption Key" - desc = "An encryption key for a radio headset. Contains cypherkeys." + desc = "An encryption key for a radio headset. Channels are as follows: :c - command, :s - security, :e - engineering, :u - supply, :v - service, :m - medical, :n - science." icon_state = "cap_cypherkey" channels = list("Command" = 1, "Security" = 1, "Engineering" = 0, "Science" = 0, "Medical" = 0, "Supply" = 0, "Service" = 0) /obj/item/device/encryptionkey/heads/rd name = "Research Director's Encryption Key" - desc = "An encryption key for a radio headset. Contains cypherkeys." + desc = "An encryption key for a radio headset. To access the science channel, use :n. For command, use :c." icon_state = "rd_cypherkey" channels = list("Science" = 1, "Command" = 1) /obj/item/device/encryptionkey/heads/hos name = "Head of Security's Encryption Key" - desc = "An encryption key for a radio headset. Contains cypherkeys." + desc = "An encryption key for a radio headset. To access the security channel, use :s. For command, use :c." icon_state = "hos_cypherkey" channels = list("Security" = 1, "Command" = 1) /obj/item/device/encryptionkey/heads/ce name = "Chief Engineer's Encryption Key" - desc = "An encryption key for a radio headset. Contains cypherkeys." + desc = "An encryption key for a radio headset. To access the engineering channel, use :e. For command, use :c." icon_state = "ce_cypherkey" channels = list("Engineering" = 1, "Command" = 1) /obj/item/device/encryptionkey/heads/cmo name = "Chief Medical Officer's Encryption Key" - desc = "An encryption key for a radio headset. Contains cypherkeys." + desc = "An encryption key for a radio headset. To access the medical channel, use :m. For command, use :c." icon_state = "cmo_cypherkey" channels = list("Medical" = 1, "Command" = 1) /obj/item/device/encryptionkey/heads/hop name = "Head of Personnel's Encryption Key" - desc = "An encryption key for a radio headset. Contains cypherkeys." + desc = "An encryption key for a radio headset. Channels are as follows: :u - supply, :v - service, :c - command." icon_state = "hop_cypherkey" - desc = "An encryption key for a radio headset. Contains cypherkeys." channels = list("Supply" = 1, "Service" = 1, "Command" = 1) - desc = "An encryption key for a radio headset. Contains cypherkeys." /obj/item/device/encryptionkey/headset_cargo name = "Supply Radio Encryption Key" - desc = "An encryption key for a radio headset. Contains cypherkeys." + desc = "An encryption key for a radio headset. To access the supply channel, use :u." icon_state = "cargo_cypherkey" channels = list("Supply" = 1) /obj/item/device/encryptionkey/headset_service name = "Service Radio Encryption Key" - desc = "An encryption key for a radio headset. Contains cypherkeys." + desc = "An encryption key for a radio headset. To access the service channel, use :v." icon_state = "srv_cypherkey" channels = list("Service" = 1) \ No newline at end of file