1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-05 20:24:45 +08:00

Fix showing too many keybindings

This commit is contained in:
smoogipoo
2018-01-22 15:47:31 +09:00
Unverified
parent 1350b68f15
commit ba58b25f01
+1 -1
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;
}
}