1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 09:07:25 +08:00

Fix incorrect offset check for DrawableCatchHitObjects

This commit is contained in:
Dean Herbert 2018-02-01 17:48:42 +09:00
parent 1cc7c23982
commit daac7494dd

View File

@ -53,7 +53,7 @@ namespace osu.Game.Rulesets.Catch.Objects.Drawable
{
if (CheckPosition == null) return;
if (timeOffset > 0)
if (timeOffset >= 0)
AddJudgement(new Judgement { Result = CheckPosition.Invoke(HitObject) ? HitResult.Perfect : HitResult.Miss });
}