mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:17:23 +08:00
Fix relative position being compared to time
This commit is contained in:
parent
bb8171b88a
commit
a26e237e26
@ -71,7 +71,7 @@ namespace osu.Game.Rulesets.Catch.Mods
|
||||
return;
|
||||
}
|
||||
|
||||
if (Math.Abs(diff) < timeDiff / 3d)
|
||||
if (Math.Abs(diff * CatchPlayfield.BASE_WIDTH) < timeDiff / 3d)
|
||||
{
|
||||
if (diff > 0)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user