From 131ac8fc60035e3b08f2a6d2ff094dbcf72ccd01 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Wed, 20 May 2020 13:52:33 -0400 Subject: [PATCH] VS: Chatter Lower speech bubble when in belly --- code/modules/mob/living/say.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/mob/living/say.dm b/code/modules/mob/living/say.dm index 05dd939b00..6419594ae0 100644 --- a/code/modules/mob/living/say.dm +++ b/code/modules/mob/living/say.dm @@ -323,6 +323,10 @@ proc/get_radio_key_from_channel(var/channel) var/image/speech_bubble = image('icons/mob/talk_vr.dmi',src,"[speech_type][speech_bubble_test]") //VOREStation Edit - talk_vr.dmi instead of talk.dmi for right-side icons var/sb_alpha = 255 var/atom/loc_before_turf = src + //VOREStation Add + if(isbelly(loc)) + speech_bubble.pixel_y = -13 //teehee + //VOREStation Add End while(loc_before_turf && !isturf(loc_before_turf.loc)) loc_before_turf = loc_before_turf.loc sb_alpha -= 50