Skip to content

Commit

Permalink
Speech Problems now reflected in Radio
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben10083 committed Jun 28, 2023
1 parent f654312 commit b8c42d2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions code/modules/mob/living/carbon/human/say.dm
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,9 @@
INVOKE_ASYNC(src, TYPE_PROC_REF(/mob/living/carbon/human, say_to_radios), used_radios, message, message_mode, verb, speaking)

/mob/living/carbon/human/proc/say_to_radios(used_radios, message, message_mode, verb, speaking)
var/list/handle_r = handle_speech_problems(message)
message = handle_r[1]
verb = handle_r[2]
for(var/obj/item/device/radio/R in used_radios)
R.talk_into(src, message, message_mode, verb, speaking)

Expand Down

0 comments on commit b8c42d2

Please sign in to comment.