1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-26 12:35:34 +08:00

Fix checks

This commit is contained in:
PercyDan54 2020-11-16 18:22:17 +08:00
parent f2ef7bee5d
commit 017a6b7153
No known key found for this signature in database
GPG Key ID: 6AEA7C525131BAF3
2 changed files with 5 additions and 1 deletions

View File

@ -50,5 +50,10 @@ namespace osu.Game.Rulesets.Catch.Mods
return false; return false;
} }
public bool RestartOnFail => false; public bool RestartOnFail => false;
public void ApplyToHealthProcessor(HealthProcessor healthProcessor)
{
health = healthProcessor.Health.GetBoundCopy();
}
} }
} }

View File

@ -2,7 +2,6 @@
// See the LICENCE file in the repository root for full licence text. // See the LICENCE file in the repository root for full licence text.
using osu.Game.Rulesets.Mods; using osu.Game.Rulesets.Mods;
using osu.Game.Beatmaps;
namespace osu.Game.Rulesets.Taiko.Mods namespace osu.Game.Rulesets.Taiko.Mods
{ {