From 8828fb59a645e0b1bbebd0f4fffcb88694349f42 Mon Sep 17 00:00:00 2001 From: SabreML <57483089+SabreML@users.noreply.github.com> Date: Tue, 2 Mar 2021 11:34:45 +0000 Subject: [PATCH] Name muting (#15647) --- code/game/machinery/tcomms/core.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/tcomms/core.dm b/code/game/machinery/tcomms/core.dm index f0b340459c7..12650996e89 100644 --- a/code/game/machinery/tcomms/core.dm +++ b/code/game/machinery/tcomms/core.dm @@ -307,7 +307,7 @@ if("add_filter") // This is a stripped input because I did NOT come this far for this system to be abused by HTML injection - var/name_to_add = stripped_input(usr, "Enter a name to add to the filtering list", "Name Entry") + var/name_to_add = html_decode(stripped_input(usr, "Enter a name to add to the filtering list", "Name Entry")) if(name_to_add == "") return if(name_to_add in nttc.filtering)