From d37f077e2c767165119654a2a1da540192b58285 Mon Sep 17 00:00:00 2001 From: Tastyfish Date: Mon, 28 Mar 2016 04:40:36 -0400 Subject: [PATCH] Ports tg smooth progress bars --- code/modules/mob/living/say.dm | 2 +- code/modules/mob/typing_indicator.dm | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/say.dm b/code/modules/mob/living/say.dm index 6f40c678432..13e41254080 100644 --- a/code/modules/mob/living/say.dm +++ b/code/modules/mob/living/say.dm @@ -445,4 +445,4 @@ proc/get_radio_key_from_channel(var/channel) /mob/living/speech_bubble(var/bubble_state = "",var/bubble_loc = src, var/list/bubble_recipients = list()) var/image/I = image('icons/mob/talk.dmi', bubble_loc, bubble_state, MOB_LAYER + 1) I.appearance_flags = APPEARANCE_UI_IGNORE_ALPHA - flick_overlay(, bubble_recipients, 30) \ No newline at end of file + flick_overlay(I, bubble_recipients, 30) \ No newline at end of file diff --git a/code/modules/mob/typing_indicator.dm b/code/modules/mob/typing_indicator.dm index 138fd093eaf..f2e4595a35b 100644 --- a/code/modules/mob/typing_indicator.dm +++ b/code/modules/mob/typing_indicator.dm @@ -10,7 +10,8 @@ var/global/image/typing_indicator /mob/proc/set_typing_indicator(var/state) if(!typing_indicator) - typing_indicator = image('icons/mob/talk.dmi',null,"typing") + typing_indicator = image('icons/mob/talk.dmi', null, "typing", MOB_LAYER + 1) + typing_indicator.appearance_flags = APPEARANCE_UI_IGNORE_ALPHA if(ishuman(src)) var/mob/living/carbon/human/H = src