Merge pull request #816 from mweldon/kayra-fix

Phrase Rep Pen typo fix
This commit is contained in:
Cohee 2023-07-30 02:32:18 +03:00 committed by GitHub
commit 17eb55731e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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];