From bd7a83e79e6873f7bf8ee4918b318be61913bd67 Mon Sep 17 00:00:00 2001 From: Tastyfish Date: Sun, 13 Mar 2016 22:18:38 -0400 Subject: [PATCH] Fixes "talks but you cannot hear them" message --- code/modules/mob/hear_say.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/hear_say.dm b/code/modules/mob/hear_say.dm index 8f63a34942c..538bbc24d3f 100644 --- a/code/modules/mob/hear_say.dm +++ b/code/modules/mob/hear_say.dm @@ -67,7 +67,7 @@ if(speaker == src) src << "You cannot hear yourself speak!" else - src << "[speaker_name][alt_name] talks but you cannot hear \him." + src << "[speaker_name][alt_name] talks but you cannot hear them." else if(language) src << "[speaker_name][alt_name] [track][language.format_message(message, verb)]"