1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 16:27:26 +08:00

Add space after username mention

This commit is contained in:
Joseph Madamba 2023-01-17 14:13:50 -08:00
parent 254c881ded
commit dfea42fd16

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} ";
}));
}