mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 06:36:31 +09:00
Make mod selfcontained
This commit is contained in:
@ -144,14 +144,7 @@ namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
||||
|
||||
if (countHit >= HitObject.RequiredGoodHits)
|
||||
{
|
||||
ApplyResult(r =>
|
||||
{
|
||||
// With the Classic mod, don't award points for a finished drum roll, only for ticks.
|
||||
if (r.Judgement.MaxResult == HitResult.LargeBonus)
|
||||
r.Type = HitResult.IgnoreMiss;
|
||||
else
|
||||
r.Type = countHit >= HitObject.RequiredGreatHits ? HitResult.Great : HitResult.Ok;
|
||||
});
|
||||
ApplyResult(r => r.Type = countHit >= HitObject.RequiredGreatHits ? HitResult.Great : HitResult.Ok);
|
||||
}
|
||||
else
|
||||
ApplyResult(r => r.Type = r.Judgement.MinResult);
|
||||
|
Reference in New Issue
Block a user