mirror of
https://github.com/ppy/osu.git
synced 2025-01-15 10:42:55 +08:00
Changed it so the ":" character does not appear after usernames when the displayed message is an action (e.g. /np). Just makes more sense imo
This commit is contained in:
parent
94eb853d3d
commit
7bf25bdd4d
@ -210,7 +210,7 @@ namespace osu.Game.Overlays.Chat
|
||||
timestamp.FadeTo(message is LocalEchoMessage ? 0 : 1, 500, Easing.OutQuint);
|
||||
|
||||
timestamp.Text = $@"{message.Timestamp.LocalDateTime:HH:mm:ss}";
|
||||
username.Text = $@"{message.Sender.Username}" + (senderHasBackground ? "" : ":");
|
||||
username.Text = $@"{message.Sender.Username}" + (senderHasBackground || message.IsAction ? "" : ":");
|
||||
|
||||
contentFlow.Clear();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user