1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-21 02:59:53 +08:00

Add space after username mention

This commit is contained in:
Joseph Madamba
2023-01-17 14:13:50 -08:00
Unverified
parent 254c881ded
commit dfea42fd16
+1 -1
View File
@@ -165,7 +165,7 @@ namespace osu.Game.Overlays.Chat
{
items.Add(new OsuMenuItem(ChatStrings.MentionUser, MenuItemType.Standard, () =>
{
currentChannel.Value.TextBoxMessage.Value += $"@{user.Username}";
currentChannel.Value.TextBoxMessage.Value += $"@{user.Username} ";
}));
}