From 3852e0fecfdb430efcc8c1c9152bd80604a12ddf Mon Sep 17 00:00:00 2001 From: atermonera Date: Mon, 21 Dec 2020 23:05:13 -0900 Subject: [PATCH] Adds (Follow) link to emotes for ghosts --- code/modules/mob/emote.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/emote.dm b/code/modules/mob/emote.dm index 7c1707785d..97adfdb0c7 100644 --- a/code/modules/mob/emote.dm +++ b/code/modules/mob/emote.dm @@ -37,6 +37,8 @@ var/mob/M = mob spawn(0) // It's possible that it could be deleted in the meantime, or that it runtimes. if(M) + if(isobserver(M)) + message = "[src] ([ghost_follow_link(src, M)]) [input]" M.show_message(message, m_type) for(var/obj in o_viewers)