diff --git a/osu.Game/Online/Rooms/PlaylistItem.cs b/osu.Game/Online/Rooms/PlaylistItem.cs index 7fcce1514d..e2a47ed744 100644 --- a/osu.Game/Online/Rooms/PlaylistItem.cs +++ b/osu.Game/Online/Rooms/PlaylistItem.cs @@ -96,6 +96,12 @@ namespace osu.Game.Online.Rooms public bool ShouldSerializeID() => false; public bool ShouldSerializeapiBeatmap() => false; - public bool Equals(PlaylistItem other) => ID == other?.ID && BeatmapID == other.BeatmapID && RulesetID == other.RulesetID; + public bool Equals(PlaylistItem other) + => ID == other?.ID + && BeatmapID == other.BeatmapID + && RulesetID == other.RulesetID + && Expired == other.Expired + && allowedMods.SequenceEqual(other.allowedMods) + && requiredMods.SequenceEqual(other.requiredMods); } }