1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 19:22:56 +08:00

remove writelines

This commit is contained in:
mrowswares 2021-08-29 20:16:13 +01:00
parent 1ca0223c71
commit a190038c33

View File

@ -34,7 +34,6 @@ namespace osu.Game.Rulesets.Osu.Difficulty.Skills
: base(mods)
{
greatWindow = (79 - (beatmap.BeatmapInfo.BaseDifficulty.OverallDifficulty * 6) + 0.5) / clockRate;
Console.WriteLine(greatWindow);
}
protected override double StrainValueOf(DifficultyHitObject current)
@ -57,7 +56,6 @@ namespace osu.Game.Rulesets.Osu.Difficulty.Skills
var osuPrevious = (OsuDifficultyHitObject)Previous[0];
if ( (osuPrevious.DeltaTime / osuCurrent.DeltaTime) >= 3 && osuCurrent.DeltaTime <= (2 * greatWindow))
{
//Console.WriteLine( osuCurrent.StartTime / 1000.0);
return 0;
}
}