mirror of
https://github.com/ppy/osu.git
synced 2025-02-15 15:23:14 +08:00
Fix showing too many keybindings
This commit is contained in:
parent
1350b68f15
commit
ba58b25f01
@ -125,7 +125,7 @@ namespace osu.Game.Rulesets.Mania
|
||||
{
|
||||
for (int i = 1; i <= 9; i++)
|
||||
yield return (int)PlayfieldType.Single + i;
|
||||
for (int i = 2; i <= 18; i++)
|
||||
for (int i = 2; i <= 18; i += 2)
|
||||
yield return (int)PlayfieldType.Dual + i;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user