Skip to content

Commit

Permalink
Merge pull request #29503 from peppy/catcher-trail-fix
Browse files Browse the repository at this point in the history
Fix osu!catch trail spacing not matching osu!stable expectations
  • Loading branch information
smoogipoo authored Aug 19, 2024
2 parents c18f7a2 + ca92c11 commit bb723a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions osu.Game.Rulesets.Catch/UI/CatcherArea.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit bb723a4

Please sign in to comment.