From ba73fc25507041b1396dcc326fb428797bfbe173 Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Thu, 8 Mar 2018 00:19:07 -0500 Subject: [PATCH] U_I Phase 2.2: Fix some old calls --- code/modules/mob/typing_indicator.dm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/code/modules/mob/typing_indicator.dm b/code/modules/mob/typing_indicator.dm index 8968c066c2..5b164a8499 100644 --- a/code/modules/mob/typing_indicator.dm +++ b/code/modules/mob/typing_indicator.dm @@ -28,7 +28,6 @@ set_typing_indicator(1) else if(is_preference_enabled(/datum/client_preference/show_typing_indicator)) hud_typing = 1 - update_icons_huds() var/message = input("","say (text)") as text @@ -36,7 +35,6 @@ set_typing_indicator(0) else if(is_preference_enabled(/datum/client_preference/show_typing_indicator)) hud_typing = 0 - update_icons_huds() if(message) say_verb(message) @@ -49,13 +47,11 @@ set_typing_indicator(1) else if(is_preference_enabled(/datum/client_preference/show_typing_indicator)) hud_typing = 1 - update_icons_huds() var/message = input("","me (text)") as text if(is_preference_enabled(/datum/client_preference/show_typing_indicator)) hud_typing = 0 - update_icons_huds() else if(!ishuman(src)) //If they're a mob, use the old code. set_typing_indicator(0)