mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 08:49:59 +09:00
Fix leaderboard being queried on room creation
This commit is contained in:
@ -28,8 +28,11 @@ namespace osu.Game.Screens.Multi.Match.Components
|
|||||||
[BackgroundDependencyLoader]
|
[BackgroundDependencyLoader]
|
||||||
private void load()
|
private void load()
|
||||||
{
|
{
|
||||||
room.RoomID.BindValueChanged(_ =>
|
room.RoomID.BindValueChanged(id =>
|
||||||
{
|
{
|
||||||
|
if (id == null)
|
||||||
|
return;
|
||||||
|
|
||||||
Scores = null;
|
Scores = null;
|
||||||
UpdateScores();
|
UpdateScores();
|
||||||
}, true);
|
}, true);
|
||||||
|
Reference in New Issue
Block a user