From d8e916bfc55deddd056c612e401e4c3db06e9e2f Mon Sep 17 00:00:00 2001 From: Batrachophreno Date: Thu, 26 Feb 2026 13:38:56 -0500 Subject: [PATCH] Make Radios appear on character sprites again (#21932) Back-end change caused radios to vanish due to not having explicit contained_sprite setting. You can see clip-on radios, headsets, etc. on your characters again. --- code/game/objects/items/devices/radio/headset.dm | 1 + html/changelogs/Bat-radio-sprites.yml | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 html/changelogs/Bat-radio-sprites.yml diff --git a/code/game/objects/items/devices/radio/headset.dm b/code/game/objects/items/devices/radio/headset.dm index 1b3e863805f..3464c2d7012 100644 --- a/code/game/objects/items/devices/radio/headset.dm +++ b/code/game/objects/items/devices/radio/headset.dm @@ -4,6 +4,7 @@ icon = 'icons/obj/item/radio/headset.dmi' icon_state = "headset" item_state = "headset" + contained_sprite = TRUE matter = list(MATERIAL_ALUMINIUM = 75) subspace_transmission = TRUE canhear_range = 0 // can't hear headsets from very far away diff --git a/html/changelogs/Bat-radio-sprites.yml b/html/changelogs/Bat-radio-sprites.yml new file mode 100644 index 00000000000..7abe62677c8 --- /dev/null +++ b/html/changelogs/Bat-radio-sprites.yml @@ -0,0 +1,13 @@ +# Your name. +author: Batrachophrenoboocosmomachia + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - bugfix: "Restores inhand sprites for all radio variants."