mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09: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