mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 23:24:04 +09:00
CI fix
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user