1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-16 12:23:06 +08:00

Special case not needed.

This commit is contained in:
smoogipooo 2017-03-31 11:54:12 +09:00
parent 8e8d1bbd6d
commit 49575c3447

View File

@ -95,8 +95,8 @@ namespace osu.Game.Modes.Objects.Drawables
{
IPartialJudgement partial = Judgement as IPartialJudgement;
// Never re-process non-partial hits, or partial judgements that were previously judged as misses
if (Judgement.Result != HitResult.None && (partial == null || Judgement.Result == HitResult.Miss))
// Never re-process non-partial hits
if (Judgement.Result != HitResult.None && partial == null)
return false;
// Update the judgement state