From c6d908f578637b983d7a400a25bab4037c8e6ce2 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Fri, 23 Sep 2022 16:27:24 -0700 Subject: [PATCH] Update say.dm --- code/modules/mob/say.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/say.dm b/code/modules/mob/say.dm index d8ef440ef9..ace632f3ed 100644 --- a/code/modules/mob/say.dm +++ b/code/modules/mob/say.dm @@ -54,7 +54,7 @@ to_chat(usr, "^^^----- The preceeding message has been DISCARDED for being over the maximum length of [MAX_MESSAGE_LEN]. It has NOT been sent! -----^^^") return - message = trim(copytext_char(sanitize(message), 1, MAX_MESSAGE_LEN)) + message = trim(copytext_char(sanitize_rp(message), 1, MAX_MESSAGE_LEN)) clear_typing_indicator() // clear it immediately! client?.last_activity = world.time