This commit is contained in:
Chloe Fontenot 🏳️‍⚧️ 2023-04-08 23:15:03 -05:00
parent ebd1898353
commit 63e1f12629

View File

@ -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;
}