From 7ced6327c1e836a62d0fa12a2d5525c5e2b3bf6d Mon Sep 17 00:00:00 2001 From: Casper3667 Date: Thu, 2 Sep 2021 17:52:56 +0200 Subject: [PATCH] Adds description to wrist radios and double headsets (#12431) --- code/game/objects/items/devices/radio/headset.dm | 4 ++++ html/changelogs/radiodesc.yml | 6 ++++++ 2 files changed, 10 insertions(+) create mode 100644 html/changelogs/radiodesc.yml diff --git a/code/game/objects/items/devices/radio/headset.dm b/code/game/objects/items/devices/radio/headset.dm index e92be9603a8..c68dd8086dc 100644 --- a/code/game/objects/items/devices/radio/headset.dm +++ b/code/game/objects/items/devices/radio/headset.dm @@ -177,6 +177,8 @@ /obj/item/device/radio/headset/alt/double name = "soundproof headset" + desc = "A sound isolating version of the common radio headset." + desc_info = "This radio doubles as a pair of earmuffs by providing sound protection." icon_state = "earset" item_state = "earset" item_flags = SOUNDPROTECTION @@ -184,6 +186,8 @@ /obj/item/device/radio/headset/wrist name = "wristbound radio" + desc = "A radio designed to fit on the wrist. Often known for broadcasting loudly enough that those closeby might overhear it." + desc_info = "This radio can be heard by people standing next to the one wearing it." icon_state = "wristset" item_state = "wristset" slot_flags = SLOT_WRISTS diff --git a/html/changelogs/radiodesc.yml b/html/changelogs/radiodesc.yml new file mode 100644 index 00000000000..be487e0c75c --- /dev/null +++ b/html/changelogs/radiodesc.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - bugfix: "The wristbound radio & double headset now have proper descriptions alongside a blurb on how they are different when examined."