1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-27 21:08:34 +08:00

Replace incorrectly chosen ??= with ??

This commit is contained in:
Dean Herbert
2022-04-13 13:32:34 +09:00
Unverified
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",