1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-17 00:52:54 +08:00

Fix post-merge errors.

This commit is contained in:
smoogipooo 2017-03-22 01:48:51 +09:00
parent 1bfc4d484d
commit e4926d54ab

View File

@ -52,7 +52,7 @@ namespace osu.Game.Modes.Taiko.Objects.Drawable
else if (hitOffset < HitObject.HitWindowGood)
{
Judgement.Result = HitResult.Hit;
Judgement.Score = hitOffset < HitObject.HitWindowGreat ? TaikoScoreResult.Great : TaikoScoreResult.Good;
Judgement.TaikoResult = hitOffset < HitObject.HitWindowGreat ? TaikoHitResult.Great : TaikoHitResult.Good;
}
else
Judgement.Result = HitResult.Miss;