From 1c25cb4bf05c2a1309886ed81d7fc3341ff50450 Mon Sep 17 00:00:00 2001 From: KPhoenix Date: Sun, 26 Dec 2021 00:35:37 -0500 Subject: [PATCH] Fixed Event Messages color --- Source/plrmsg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/plrmsg.cpp b/Source/plrmsg.cpp index ea9ede8ee..9c14bb743 100644 --- a/Source/plrmsg.cpp +++ b/Source/plrmsg.cpp @@ -120,7 +120,7 @@ void DrawPlrMsg(const Surface &out) y -= message.lineHeight * chatlines; DrawHalfTransparentRectTo(out, x - 3, y, width + 6, message.lineHeight * chatlines); - DrawString(out, text, { { x, y }, { width, 0 } }, UiFlags::ColorWhite, 1, message.lineHeight); + DrawString(out, text, { { x, y }, { width, 0 } }, message.style, 1, message.lineHeight); DrawString(out, message.from, { { x, y }, { width, 0 } }, UiFlags::ColorWhitegold, 1, message.lineHeight); } }