From 4de08c60389a355c6be2f3b8fccf8d4e78a3a37c Mon Sep 17 00:00:00 2001 From: CHOMPStation2StaffMirrorBot <94713762+CHOMPStation2StaffMirrorBot@users.noreply.github.com> Date: Sun, 5 Jan 2025 14:09:20 -0700 Subject: [PATCH] [MIRROR] fix matrix colour affecting speech bubbles (#9799) Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> --- code/modules/tgui_input/say_modal/typing.dm | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/code/modules/tgui_input/say_modal/typing.dm b/code/modules/tgui_input/say_modal/typing.dm index 333632e3ce..830caa0676 100644 --- a/code/modules/tgui_input/say_modal/typing.dm +++ b/code/modules/tgui_input/say_modal/typing.dm @@ -11,8 +11,7 @@ var/cur_bubble_appearance = custom_speech_bubble if(!cur_bubble_appearance || cur_bubble_appearance == "default") cur_bubble_appearance = speech_bubble_appearance() - active_thinking_indicator = mutable_appearance('icons/mob/talk_vr.dmi', "[cur_bubble_appearance]_thinking", FLOAT_LAYER) - active_thinking_indicator.appearance_flags |= (RESET_COLOR|PIXEL_SCALE) + active_thinking_indicator = mutable_appearance('icons/mob/talk_vr.dmi', "[cur_bubble_appearance]_thinking", FLOAT_LAYER, appearance_flags=(KEEP_APART|RESET_COLOR|PIXEL_SCALE)) active_thinking_indicator.pixel_x = get_oversized_icon_offsets()["x"] active_thinking_indicator.pixel_y = get_oversized_icon_offsets()["y"] add_overlay(active_thinking_indicator) @@ -31,8 +30,7 @@ var/cur_bubble_appearance = custom_speech_bubble if(!cur_bubble_appearance || cur_bubble_appearance == "default") cur_bubble_appearance = speech_bubble_appearance() - active_typing_indicator = mutable_appearance('icons/mob/talk_vr.dmi', "[cur_bubble_appearance]_typing", ABOVE_MOB_LAYER) - active_typing_indicator.appearance_flags |= (RESET_COLOR|PIXEL_SCALE) + active_typing_indicator = mutable_appearance('icons/mob/talk_vr.dmi', "[cur_bubble_appearance]_typing", ABOVE_MOB_LAYER, appearance_flags=(KEEP_APART|RESET_COLOR|PIXEL_SCALE)) active_typing_indicator.pixel_x = get_oversized_icon_offsets()["x"] active_typing_indicator.pixel_y = get_oversized_icon_offsets()["y"] add_overlay(active_typing_indicator)