mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Fix wrong checks..
This commit is contained in:
@ -150,6 +150,6 @@ namespace osu.Game.Rulesets.Mods
|
||||
}
|
||||
|
||||
public bool Equals(IMod other) => other is Mod them && Equals(them);
|
||||
public bool Equals(Mod other) => Acronym == other?.Acronym;
|
||||
public bool Equals(Mod other) => GetType() == other?.GetType();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user