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

Add room name to invite notification

This commit is contained in:
Marvin Schürz 2023-10-02 23:20:24 +02:00
parent e81695bcac
commit 3879775219

View File

@ -451,7 +451,7 @@ namespace osu.Game.Online.Multiplayer
Scheduler.Add(() =>
{
PostNotification?.Invoke(
new UserAvatarNotification(user, $"{user.Username} invited you to a multiplayer match!")
new UserAvatarNotification(user, $"{user.Username} invited you to a multiplayer match:\"{room.Settings.Name}\"!")
);
});
}