mirror of
https://github.com/ppy/osu.git
synced 2025-03-22 21:00:33 +08:00
Replace incorrectly chosen ??=
with ??
This commit is contained in:
parent
8b1cee75fa
commit
017f3852c8
@ -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",
|
||||
|
Loading…
x
Reference in New Issue
Block a user