Remove iOS multiplayer blocking code

This commit is contained in:
Dean Herbert
2021-03-08 13:29:47 +09:00
parent 7763e1dbe1
commit 765cc5cf37
2 changed files with 2 additions and 21 deletions

View File

@ -172,18 +172,6 @@ namespace osu.Game.Screens.Menu
return;
}
// disabled until the underlying runtime issue is resolved, see https://github.com/mono/mono/issues/20805.
if (RuntimeInfo.OS == RuntimeInfo.Platform.iOS)
{
notifications?.Post(new SimpleNotification
{
Text = "Multiplayer is temporarily unavailable on iOS as we figure out some low level issues.",
Icon = FontAwesome.Solid.AppleAlt,
});
return;
}
OnMultiplayer?.Invoke();
}