Merge pull request #9256 from SollyBunny/fix_colors_on_repeated_client_msg

Fix colors on repeated client msg
This commit is contained in:
Dennis Felsing 2024-11-16 18:40:22 +00:00 committed by GitHub
commit 95d6d99aff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1094,11 +1094,10 @@ void CChat::OnPrepareLines(float y)
TextRender()->CreateOrAppendTextContainer(Line.m_TextContainerIndex, &Cursor, ": ");
}
// Only apply msg color if no custom color is set
if(!Line.m_CustomColor)
{
ColorRGBA Color;
if(Line.m_ClientId == SERVER_MSG)
if(Line.m_CustomColor)
Color = *Line.m_CustomColor;
else if(Line.m_ClientId == SERVER_MSG)
Color = color_cast<ColorRGBA>(ColorHSLA(g_Config.m_ClMessageSystemColor));
else if(Line.m_ClientId == CLIENT_MSG)
Color = color_cast<ColorRGBA>(ColorHSLA(g_Config.m_ClMessageClientColor));
@ -1109,7 +1108,6 @@ void CChat::OnPrepareLines(float y)
else // regular message
Color = color_cast<ColorRGBA>(ColorHSLA(g_Config.m_ClMessageColor));
TextRender()->TextColor(Color);
}
CTextCursor AppendCursor = Cursor;
AppendCursor.m_LongestLineWidth = 0.0f;