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

attempt to fix crash for non osu modded launch

This commit is contained in:
Shawdooow
2018-03-18 23:49:06 -04:00
Unverified
parent 185c785d76
commit 7a063e3be1
@@ -40,7 +40,11 @@ namespace Symcol.Rulesets.Core.Multiplayer.Screens
{
Remove(LobbyItems);
SymcolSettingsSubsection.RulesetMultiplayerSelection = new RulesetMultiplayerSelection();
SymcolMenu.RulesetMultiplayerScreen = SymcolSettingsSubsection.RulesetMultiplayerSelection;
try
{
SymcolMenu.RulesetMultiplayerScreen = SymcolSettingsSubsection.RulesetMultiplayerSelection;
}
catch { }
return base.OnExiting(next);
}
}