Allow 10k to be played on a single stage

This commit is contained in:
smoogipoo
2020-04-20 14:08:23 +09:00
parent 70ef6df4fb
commit b881293b98
2 changed files with 48 additions and 21 deletions

View File

@ -47,7 +47,7 @@ namespace osu.Game.Rulesets.Mania.Beatmaps
{
TargetColumns = (int)Math.Max(1, roundedCircleSize);
if (TargetColumns >= 10)
if (TargetColumns > 10)
{
TargetColumns /= 2;
Dual = true;