diff --git a/code/game/say.dm b/code/game/say.dm index 3fee6eaee2..d0d031ee0d 100644 --- a/code/game/say.dm +++ b/code/game/say.dm @@ -108,7 +108,7 @@ GLOBAL_LIST_INIT(freqtospan, list( */ /atom/movable/proc/encode_html_emphasis(input, char, html) var/regex/search = regex("([REGEX_QUOTE(char)])(\\b.*\\b)([REGEX_QUOTE(char)])", "g") - return search.Replace_char(message, "<[html]>$2") + return search.Replace_char(input, "<[html]>$2") /// Quirky citadel proc for our custom sayverbs to strip the verb out. Snowflakey as hell, say rewrite 3.0 when?