mirror of
https://github.com/ppy/osu.git
synced 2026-05-28 00:20:28 +08:00
Replace incorrectly chosen ??= with ??
This commit is contained in:
@@ -91,7 +91,7 @@ namespace osu.Game.Screens.Play.HUD
|
||||
|
||||
for (int i = 0; i < users.Length; i++)
|
||||
{
|
||||
var user = users[i] ??= new APIUser
|
||||
var user = users[i] ?? new APIUser
|
||||
{
|
||||
Id = playingUsers[i].UserID,
|
||||
Username = "Unknown user",
|
||||
|
||||
Reference in New Issue
Block a user