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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user