mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
made double cheese detection stricter
This commit is contained in:
parent
57a2ba9aa8
commit
0beef9c1e7
@ -47,7 +47,7 @@ namespace osu.Game.Rulesets.Osu.Difficulty.Skills
|
||||
double deltaTime = current.DeltaTime;
|
||||
|
||||
// Aim to nerf cheesy rhythms (Very fast consecutive doubles with large deltatimes between)
|
||||
if (Previous.Count > 0 && deltaTime <= greatWindow * 2)
|
||||
if (Previous.Count > 0 && deltaTime <= greatWindow)
|
||||
{
|
||||
deltaTime = Math.Max(Previous[0].DeltaTime, deltaTime);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user