quick fix for piercing

This commit is contained in:
Daniel 2020-05-01 21:56:43 -04:00
parent 1a88ead718
commit 7186da1894
2 changed files with 4 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -127,7 +127,9 @@ const parseNote = (pitch: string, seq: Note[]): {pitch: string, octave: number}
return trend(current, l, seq);
})();
return {pitch: pitch, octave};
if (octave > 5) octave = 5;
return {pitch, octave};
}
/*