1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-08 04:24:10 +08:00

Fix incorrect offset check for DrawableCatchHitObjects

This commit is contained in:
Dean Herbert
2018-02-01 17:48:42 +09:00
Unverified
parent 1cc7c23982
commit daac7494dd
@@ -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 });
}