1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-15 23:42:55 +08:00

Fix showing too many keybindings

This commit is contained in:
smoogipoo 2018-01-22 15:47:31 +09:00
parent 1350b68f15
commit ba58b25f01

View File

@ -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;
}
}