We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Scheduler.AddOnce
updateSpecifics
1 parent 8bb7bea commit 6c60634Copy full SHA for 6c60634
osu.Game/Screens/OnlinePlay/Match/RoomSubScreen.cs
@@ -427,7 +427,7 @@ protected void StartPlay()
427
/// <returns>The screen to enter.</returns>
428
protected abstract Screen CreateGameplayScreen(PlaylistItem selectedItem);
429
430
- private void updateSpecifics() => Scheduler.AddOnce(() =>
+ private void updateSpecifics()
431
{
432
if (!this.IsCurrentScreen() || SelectedItem.Value is not PlaylistItem item)
433
return;
@@ -487,7 +487,7 @@ private void updateSpecifics() => Scheduler.AddOnce(() =>
487
}
488
else
489
UserStyleSection.Hide();
490
- });
+ }
491
492
protected virtual APIMod[] GetGameplayMods() => UserMods.Value.Select(m => new APIMod(m)).Concat(SelectedItem.Value!.RequiredMods).ToArray();
493
0 commit comments