1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-06 04:12:55 +08:00

Fix room not created before being joined

This commit is contained in:
smoogipoo 2020-12-19 02:41:04 +09:00
parent 3f4a66c4ae
commit 9b08f573ba

View File

@ -44,10 +44,7 @@ namespace osu.Game.Tests.Visual.RealtimeMultiplayer
RoomManager.Schedule(() => RoomManager.PartRoom()); RoomManager.Schedule(() => RoomManager.PartRoom());
if (joinRoom) if (joinRoom)
{ RoomManager.Schedule(() => RoomManager.CreateRoom(Room));
Room.RoomID.Value = 1;
RoomManager.Schedule(() => RoomManager.JoinRoom(Room, null, null));
}
}); });
} }
} }