Skip to content

Commit

Permalink
fixed offsets and shit
Browse files Browse the repository at this point in the history
  • Loading branch information
nebulazorua committed Sep 14, 2021
1 parent 0f510f1 commit debb6e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/gameFolder/gameObjects/Note.hx
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ class Note extends FNFSprite
// please generate this ahead of time and put into array :)
// I dont think I will im scared of those
final quantTime = (measureTime / quantArray[quant]);
if ((strumTime + smallestDeviation) % quantTime < smallestDeviation * 2)
if ((strumTime + Init.trueSettings['Offset'] + smallestDeviation) % quantTime < smallestDeviation * 2)
{
// here it is, the quant, finally!
newNote.noteQuant = quant;
Expand Down

0 comments on commit debb6e7

Please sign in to comment.