Fix osu!catch trail spacing not matching osu!stable expectations

Closes https://github.com/ppy/osu/issues/28997.
This commit is contained in:
Dean Herbert 2024-08-19 15:01:11 +09:00
parent 510f2c8ce2
commit ca92c116b5
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -110,9 +110,9 @@ protected override void UpdateAfterChildren()
if (Catcher.Dashing || Catcher.HyperDashing)
{
double generationInterval = Catcher.HyperDashing ? 25 : 50;
const double trail_generation_interval = 16;
if (Time.Current - catcherTrails.LastDashTrailTime >= generationInterval)
if (Time.Current - catcherTrails.LastDashTrailTime >= trail_generation_interval)
displayCatcherTrail(Catcher.HyperDashing ? CatcherTrailAnimation.HyperDashing : CatcherTrailAnimation.Dashing);
}