From 3dd6046723933483bf3ccaa1c9425d7e650c7e0b Mon Sep 17 00:00:00 2001 From: TheGreatKitsune <88862343+TheGreatKitsune@users.noreply.github.com> Date: Tue, 26 Sep 2023 09:52:50 -0500 Subject: [PATCH] Fixes posis not being able to use some characters in speaking (#7045) --- code/modules/mob/living/carbon/brain/say.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/brain/say.dm b/code/modules/mob/living/carbon/brain/say.dm index e03067db1a..5f0355eee5 100644 --- a/code/modules/mob/living/carbon/brain/say.dm +++ b/code/modules/mob/living/carbon/brain/say.dm @@ -3,7 +3,7 @@ if(silent) return - message = sanitize(message) + //message = sanitize(message) //CHOMPEdit: This causes.... so many more problems then it fixes. Also should just be handled in the super function if(!(container && container.can_speak)) return //Certain objects can speak, like MMIs. Most others cannot. -Q