1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 19:42:55 +08:00

Merge pull request #15889 from smoogipoo/fix-multi-test-ids

Fix testable online IDs starting at 0
This commit is contained in:
Dean Herbert 2021-12-01 22:51:24 +09:00 committed by GitHub
commit caa88950da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,9 +25,9 @@ namespace osu.Game.Tests.Visual.OnlinePlay
private readonly List<Room> serverSideRooms = new List<Room>();
private int currentRoomId;
private int currentPlaylistItemId;
private int currentScoreId;
private int currentRoomId = 1;
private int currentPlaylistItemId = 1;
private int currentScoreId = 1;
/// <summary>
/// Handles an API request, while also updating the local state to match