Fix relative position being compared to time

This commit is contained in:
smoogipoo 2019-03-18 18:59:38 +09:00
parent bb8171b88a
commit a26e237e26
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ public void ApplyToHitObject(HitObject hitObject)
return;
}
if (Math.Abs(diff) < timeDiff / 3d)
if (Math.Abs(diff * CatchPlayfield.BASE_WIDTH) < timeDiff / 3d)
{
if (diff > 0)
{