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

Fix unknown mod test failure

This commit is contained in:
Bartłomiej Dach
2023-11-02 23:44:40 +01:00
Unverified
parent 8e9006b5d5
commit a613292802
@@ -47,6 +47,12 @@ namespace osu.Game.Screens.Play
[BackgroundDependencyLoader]
private void load()
{
if (DrawableRuleset == null)
{
// base load must have failed (e.g. due to an unknown mod); bail.
return;
}
AddInternal(new PlayerTouchInputHandler());
}