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

Merge branch 'master' into toggle-multiplayer-leaderboard-with-hud

This commit is contained in:
Dan Balasescu
2021-08-06 19:36:19 +09:00
committed by GitHub
Unverified
2 changed files with 1 additions and 3 deletions
@@ -41,7 +41,7 @@ namespace osu.Game.Online.Multiplayer
public string Password { get; set; } = string.Empty;
[Key(8)]
public MatchType MatchType { get; set; }
public MatchType MatchType { get; set; } = MatchType.HeadToHead;
public bool Equals(MultiplayerRoomSettings other)
=> BeatmapID == other.BeatmapID
@@ -30,8 +30,6 @@ namespace osu.Game.Screens.OnlinePlay.Match.Components
AddItem(MatchType.HeadToHead);
AddItem(MatchType.TeamVersus);
// TODO: remove after osu-web is updated to set the correct default type.
AddItem(MatchType.Playlists);
}
private class GameTypePickerItem : DisableableTabItem