1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-22 00:47:20 +08:00

Merge pull request #851 from peppy/make-spinners-easier

Make spinners easier for now
This commit is contained in:
Dan Balasescu 2017-05-25 13:47:26 +09:00 committed by GitHub
commit 2021e3cead

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