From c143bbae232fb38e1b03424aac8c7ae78d3870f7 Mon Sep 17 00:00:00 2001 From: MtH Date: Mon, 6 Dec 2021 00:51:31 +0100 Subject: [PATCH] make sustain release less tight --- source/Note.hx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Note.hx b/source/Note.hx index aeaf89b07..812441975 100644 --- a/source/Note.hx +++ b/source/Note.hx @@ -232,8 +232,8 @@ class Note extends FlxSprite else { if (strumTime > Conductor.songPosition - HIT_WINDOW) - { // * 0.2 if sustain note, so u have to keep holding it closer to all the way thru! - if (strumTime < Conductor.songPosition + (HIT_WINDOW * (isSustainNote ? 0.2 : 1))) + { // * 0.5 if sustain note, so u have to keep holding it closer to all the way thru! + if (strumTime < Conductor.songPosition + (HIT_WINDOW * (isSustainNote ? 0.5 : 1))) canBeHit = true; } else