mirror of
https://github.com/ppy/osu
synced 2025-02-02 03:11:58 +00:00
Fix misplaced parenthesis
This commit is contained in:
parent
1d968009c2
commit
e769ef45be
@ -15,7 +15,7 @@ namespace osu.Game.Rulesets.Mania
|
|||||||
|
|
||||||
public bool Matches(BeatmapInfo beatmap)
|
public bool Matches(BeatmapInfo beatmap)
|
||||||
{
|
{
|
||||||
return !keys.HasFilter || (beatmap.RulesetID == new ManiaRuleset().LegacyID) && keys.IsInRange(ManiaBeatmapConverter.GetColumnCountForNonConvert(beatmap));
|
return !keys.HasFilter || (beatmap.RulesetID == new ManiaRuleset().LegacyID && keys.IsInRange(ManiaBeatmapConverter.GetColumnCountForNonConvert(beatmap)));
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool TryParseCustomKeywordCriteria(string key, Operator op, string value)
|
public bool TryParseCustomKeywordCriteria(string key, Operator op, string value)
|
||||||
|
Loading…
Reference in New Issue
Block a user