Fix response value

This commit is contained in:
smoogipoo
2020-06-03 12:54:07 +09:00
parent a606f41297
commit 13622eff1f
3 changed files with 10 additions and 3 deletions

View File

@ -66,7 +66,7 @@ namespace osu.Game.Tests.Visual.Multiplayer
switch (request)
{
case GetRoomPlaylistScoresRequest r:
r.TriggerSuccess(roomScores);
r.TriggerSuccess(new RoomPlaylistScores { Scores = roomScores });
break;
}
});