From 99e71ef15ece65f888c8a8a2d17b8230b8043d35 Mon Sep 17 00:00:00 2001 From: Cameron Lennox Date: Fri, 15 Aug 2025 20:52:56 -0400 Subject: [PATCH] Makes direct_say call automatic_custom (#18218) Automatic_custom is the no-logging, no-sleep variant --- code/modules/mob/living/say.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/say.dm b/code/modules/mob/living/say.dm index 22879d6136..e0ce72d42d 100644 --- a/code/modules/mob/living/say.dm +++ b/code/modules/mob/living/say.dm @@ -318,7 +318,7 @@ var/list/channel_to_radio_key = list() for(var/datum/multilingual_say_piece/S in message_pieces) if((S.speaking.flags & NONVERBAL) || (S.speaking.flags & INAUDIBLE)) var/sign_action = "[pick(S.speaking.signlang_verb)]." - process_normal_emote(VISIBLE_MESSAGE,sign_action,sign_action) + automatic_custom_emote(VISIBLE_MESSAGE,sign_action) do_sound = FALSE //These will contain the main receivers of the message