Skip to content

Commit

Permalink
Update 1.2.3 - Fixed Glyph Generation Notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
Muhaddil committed Dec 24, 2024
1 parent e43ca94 commit 1f44037
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion JS/glyphgeneratorV3.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,13 @@ const generateGlyphs = () => {
return "";
}
}
} else {
} else if (regionInput.length > 0 && regionInput.length < 12) {
for (let i = 0; i < 8; i++) {
glyphs += randomGlyph();
showNotification(i18next.t("fullportalcode"), "error");
}
} else {
for (let i = 0; i < 8; i++) {
glyphs += randomGlyph();
}
}
Expand Down

0 comments on commit 1f44037

Please sign in to comment.