1
0
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:
Dean Herbert 2022-04-13 13:32:34 +09:00
parent 8b1cee75fa
commit 017f3852c8

View File

@ -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",