Skip to content

Commit

Permalink
Actually use CatchHealthProcessor for the ruleset
Browse files Browse the repository at this point in the history
  • Loading branch information
smoogipoo committed Nov 24, 2023
1 parent 4ba6450 commit bb66267
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions osu.Game.Rulesets.Catch/CatchRuleset.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ public class CatchRuleset : Ruleset, ILegacyRuleset

public override ScoreProcessor CreateScoreProcessor() => new CatchScoreProcessor();

public override HealthProcessor CreateHealthProcessor(double drainStartTime) => new CatchHealthProcessor(drainStartTime);

public override IBeatmapConverter CreateBeatmapConverter(IBeatmap beatmap) => new CatchBeatmapConverter(beatmap, this);

public override IBeatmapProcessor CreateBeatmapProcessor(IBeatmap beatmap) => new CatchBeatmapProcessor(beatmap);
Expand Down

0 comments on commit bb66267

Please sign in to comment.