From 4e5d8b787e0ad3befb7a6649835fa20e9abdbed0 Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Thu, 9 Oct 2014 06:18:49 +1030 Subject: [PATCH] Minor change based on diff --- code/modules/mob/typing_indicator.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/modules/mob/typing_indicator.dm b/code/modules/mob/typing_indicator.dm index b770451840e..203159f3c68 100644 --- a/code/modules/mob/typing_indicator.dm +++ b/code/modules/mob/typing_indicator.dm @@ -80,7 +80,6 @@ var/global/image/typing_indicator // Clear out any existing typing indicator. if(prefs.toggles & SHOW_TYPING) - var/mob/M = eye - if(M && istype(M)) M.set_typing_indicator(0) + if(istype(mob)) mob.set_typing_indicator(0) feedback_add_details("admin_verb","TID") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! \ No newline at end of file