mirror of
https://github.com/ppy/osu
synced 2025-01-18 20:10:49 +00:00
Fix leaderboard being queried on room creation
This commit is contained in:
parent
bcd3584df0
commit
91b83cd4b8
@ -28,8 +28,11 @@ namespace osu.Game.Screens.Multi.Match.Components
|
||||
[BackgroundDependencyLoader]
|
||||
private void load()
|
||||
{
|
||||
room.RoomID.BindValueChanged(_ =>
|
||||
room.RoomID.BindValueChanged(id =>
|
||||
{
|
||||
if (id == null)
|
||||
return;
|
||||
|
||||
Scores = null;
|
||||
UpdateScores();
|
||||
}, true);
|
||||
|
Loading…
Reference in New Issue
Block a user