mirror of
https://github.com/ppy/osu
synced 2025-01-09 23:59:44 +00:00
CI fix
This commit is contained in:
parent
2592a0489b
commit
e51fd00d58
@ -11,8 +11,6 @@ using osu.Game.Rulesets.Taiko;
|
||||
using osu.Game.Rulesets.Catch;
|
||||
using osu.Framework.Graphics.Containers;
|
||||
using osu.Framework.Graphics.Sprites;
|
||||
using osu.Framework.Bindables;
|
||||
using osu.Game.Rulesets;
|
||||
using osu.Framework.Extensions.IEnumerableExtensions;
|
||||
|
||||
namespace osu.Game.Tests.Visual.Online
|
||||
|
@ -28,7 +28,7 @@ namespace osu.Game.Overlays.BeatmapSet
|
||||
get => ruleset;
|
||||
set
|
||||
{
|
||||
if (ruleset == value)
|
||||
if (ruleset?.Equals(value) ?? false)
|
||||
{
|
||||
DeselectAll();
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user