1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-15 17:03:21 +08:00

Merge branch 'master' into early-activate-flashes

This commit is contained in:
Dan Balasescu 2017-05-25 13:51:08 +09:00 committed by GitHub
commit 4c5b2cda16

View File

@ -24,6 +24,9 @@ namespace osu.Game.Rulesets.Osu.Objects
base.ApplyDefaults(controlPointInfo, difficulty);
SpinsRequired = (int)(Duration / 1000 * BeatmapDifficulty.DifficultyRange(difficulty.OverallDifficulty, 3, 5, 7.5));
// spinning doesn't match 1:1 with stable, so let's fudge them easier for the time being.
SpinsRequired = (int)(SpinsRequired * 0.6);
}
}
}