From 115ddc5a5f7e7e35a0c0210c836ca759a921e543 Mon Sep 17 00:00:00 2001 From: mochi <1496804+dearmochi@users.noreply.github.com> Date: Thu, 12 Aug 2021 22:31:18 +0200 Subject: [PATCH] to be continued... --- code/modules/mob/emote.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/emote.dm b/code/modules/mob/emote.dm index 1c9da3a9933..12312a4fdff 100644 --- a/code/modules/mob/emote.dm +++ b/code/modules/mob/emote.dm @@ -77,7 +77,9 @@ // Type 1 (Visual) emotes are sent to anyone in view of the item if(m_type & EMOTE_VISUAL) - var/runechat_text = copytext(input, 1, 101) + var/runechat_text = input + if(length(input) > 100) + runechat_text = "[copytext(input, 1, 101)]..." var/list/can_see = get_mobs_in_view(1,src) //Allows silicon & mmi mobs carried around to see the emotes of the person carrying them around. can_see |= viewers(src,null) for(var/mob/O in can_see)