1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-13 18:07:25 +08:00

Update test debug output to test second scenario

This commit is contained in:
Dean Herbert 2024-08-14 12:23:47 +09:00
parent 1b29b9bbb8
commit 78ef436ea0
No known key found for this signature in database

View File

@ -788,7 +788,7 @@ namespace osu.Game.Online.Multiplayer
try
{
indexOf = Room.Playlist.IndexOf(Room.Playlist.Single(existing => existing.ID == item.ID));
indexOf = APIRoom!.Playlist.IndexOf(APIRoom.Playlist.Single(existing => existing.ID == item.ID));
Room.Playlist[indexOf] = item;
}
catch