south charted

This commit is contained in:
Cameron Taylor
2020-10-28 19:47:10 -07:00
parent bb8cb6e428
commit 1e58720c32
12 changed files with 23 additions and 6 deletions

View File

@ -130,8 +130,9 @@ class Note extends FlxSprite
if (mustPress)
{
// The * 0.5 us so that its easier to hit them too late, instead of too early
if (strumTime > Conductor.songPosition - Conductor.safeZoneOffset
&& strumTime < Conductor.songPosition + Conductor.safeZoneOffset)
&& strumTime < Conductor.songPosition + (Conductor.safeZoneOffset * 0.5))
{
canBeHit = true;
}