diff --git a/code/modules/mob/say_vr.dm b/code/modules/mob/say_vr.dm index 158aabc80a..6cc0ca185f 100644 --- a/code/modules/mob/say_vr.dm +++ b/code/modules/mob/say_vr.dm @@ -23,6 +23,7 @@ /mob/proc/print_flavor_text() if(flavor_text && flavor_text != "") + // We are decoding and then encoding to not only get correct amount of characters, but also to prevent partial escaping characters being shown. var/msg = html_decode(replacetext(flavor_text, "\n", " ")) if(lentext(msg) <= 40) return "[html_encode(msg)]"