1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-27 05:09:58 +08:00

Fixed messages sent by yourself not being formatted

This commit is contained in:
FreezyLemon
2017-12-04 19:31:48 +01:00
Unverified
parent bb138ccaf7
commit 63a6a8b669
+2 -2
View File
@@ -73,7 +73,7 @@ namespace osu.Game.Overlays.Chat
public ChatLine(Message message)
{
Message = MessageFormatter.FormatMessage(message);
Message = message;
RelativeSizeAxes = Axes.X;
AutoSizeAxes = Axes.Y;
@@ -92,7 +92,7 @@ namespace osu.Game.Overlays.Chat
{
if (message == value) return;
message = value;
message = MessageFormatter.FormatMessage(value);
if (!IsLoaded)
return;