From ef69742a1c761b71e992bd0219a16774cae70d67 Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Wed, 8 Mar 2017 19:59:29 -0500 Subject: [PATCH] REALLY right-side talk icons I see the 'just talked' one flips back over. --- code/modules/mob/living/say.dm | 2 +- code/modules/mob/living/voice/voice.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/say.dm b/code/modules/mob/living/say.dm index c7856f5082f..e912cc31ec6 100644 --- a/code/modules/mob/living/say.dm +++ b/code/modules/mob/living/say.dm @@ -295,7 +295,7 @@ proc/get_radio_key_from_channel(var/channel) //The 'post-say' static speech bubble var/speech_bubble_test = say_test(message) - var/image/speech_bubble = image('icons/mob/talk.dmi',src,"h[speech_bubble_test]") + var/image/speech_bubble = image('icons/mob/talk_vr.dmi',src,"h[speech_bubble_test]") //VOREStation Edit - Right-side talk icons spawn(30) qdel(speech_bubble) //Main 'say' and 'whisper' message delivery diff --git a/code/modules/mob/living/voice/voice.dm b/code/modules/mob/living/voice/voice.dm index a27b0ffc948..9408800ad07 100644 --- a/code/modules/mob/living/voice/voice.dm +++ b/code/modules/mob/living/voice/voice.dm @@ -111,7 +111,7 @@ //Speech bubbles. if(comm) var/speech_bubble_test = say_test(message) - var/image/speech_bubble = image('icons/mob/talk.dmi',comm,"h[speech_bubble_test]") + var/image/speech_bubble = image('icons/mob/talk_vr.dmi',comm,"h[speech_bubble_test]") //VOREStation Edit - Right side talk icons spawn(30) qdel(speech_bubble)