Fix minor typo that broke phraseRepPen for NAI

This commit is contained in:
Mike Weldon 2023-07-29 15:59:18 -07:00
parent dddc49c235
commit 9dba57dc85

View File

@ -102,7 +102,7 @@ const phraseRepPenStrings = [
]
function getPhraseRepPenString(phraseRepPenCounter) {
if (phraseRepPenCounter < 1 || phraseRepPenCounter > F5) {
if (phraseRepPenCounter < 1 || phraseRepPenCounter > 5) {
return null;
} else {
return phraseRepPenStrings[phraseRepPenCounter];