master
Chloe Fontenot 🏳️‍⚧️ 2023-04-08 23:15:03 +07:00
parent ebd1898353
commit 63e1f12629
1 changed files with 1 additions and 1 deletions

@ -20,7 +20,7 @@ module.exports = {
async execute(interaction, client) {
let inputString = interaction.options.getString('string');
let design = parseInt(interaction.options.getString('design'));
if (design < 1 || design > 4) {
if (design < 1 || design > 5) {
await interaction.reply('Invalid design choice.');
return;
}