Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 9b4eecb

Browse files
fix antenna mutator breaking loud voice (#22877)
* unga * oops * better fix
1 parent 1d6313e commit 9b4eecb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

code/modules/mob/living/say.dm

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,10 @@ GLOBAL_LIST_INIT(special_radio_keys, list(
385385

386386
/mob/living/proc/radio(message, list/message_mods = list(), list/spans, language)
387387
var/obj/item/implant/radio/imp = locate() in src
388+
var/obj/item/radio/radio = get_item_by_slot(ITEM_SLOT_EARS)
388389
if(imp && imp.radio.on)
390+
if(radio?.use_command)
391+
spans |= SPAN_COMMAND
389392
if(message_mods[MODE_HEADSET])
390393
imp.radio.talk_into(src, message, null, spans, language, message_mods)
391394
return ITALICS | REDUCE_RANGE

0 commit comments

Comments
 (0)