1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-03 18:03:55 +08:00

Fix players positioning on next matchmaking round

This commit is contained in:
Dan Balasescu
2025-09-24 14:44:21 +09:00
Unverified
parent a129345a82
commit 13cb5deca3
@@ -244,8 +244,12 @@ namespace osu.Game.Screens.OnlinePlay.Matchmaking
public void ReleasePanels()
{
foreach (var panel in Children)
panel.ReleasePanel();
// Matches the schedule in AcquirePanels.
ScheduleAfterChildren(() =>
{
foreach (var panel in Children)
panel.ReleasePanel();
});
}
}