mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 07:33:55 +09:00
Fix relative position being compared to time
This commit is contained in:
@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user