From dc8957497839feba4ff5c08a4f9de1911cda9f5b Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 20 May 2022 18:30:06 +0200 Subject: [PATCH] [MIRROR] Logs circuit speech [MDB IGNORE] (#13704) * Logs circuit speech (#67066) * logging circuit speech Co-authored-by: tattle * Logs circuit speech Co-authored-by: dragomagol <66640614+dragomagol@users.noreply.github.com> Co-authored-by: Tom <8881105+tf-4@users.noreply.github.com> --- code/modules/wiremod/components/action/speech.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/wiremod/components/action/speech.dm b/code/modules/wiremod/components/action/speech.dm index 315ba450273..10d56860566 100644 --- a/code/modules/wiremod/components/action/speech.dm +++ b/code/modules/wiremod/components/action/speech.dm @@ -31,7 +31,7 @@ var/atom/movable/shell = parent.shell // Prevents appear as the individual component if there is a shell. if(shell) - shell.say(message.value) + shell.say(message.value, forced = "circuit speech | [key_name(parent.get_creator())]") else - say(message.value) + say(message.value, forced = "circuit speech | [parent.get_creator()]") TIMER_COOLDOWN_START(parent, COOLDOWN_CIRCUIT_SPEECH, speech_cooldown)