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
1 changed files with 3 additions and 0 deletions

View File

@ -24,6 +24,9 @@ public override void ApplyDefaults(ControlPointInfo controlPointInfo, BeatmapDif
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);
}
}
}