From cef2cbde05c946397635b66bffa99c80544d68b4 Mon Sep 17 00:00:00 2001 From: KadeDev Date: Fri, 2 Apr 2021 17:48:21 -0700 Subject: [PATCH] offset fix (boutta killa a contributer) --- source/Note.hx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/Note.hx b/source/Note.hx index c5de613..fa88315 100644 --- a/source/Note.hx +++ b/source/Note.hx @@ -48,7 +48,10 @@ class Note extends FlxSprite x += 50; // MAKE SURE ITS DEFINITELY OFF SCREEN? y -= 2000; - this.strumTime = strumTime; + this.strumTime = strumTime + FlxG.save.data.offset; + + if (this.strumTime < 0 ) + this.strumTime = 0; this.noteData = noteData;