From 63e1f1262978c47010640b3f25877b8d0b51de12 Mon Sep 17 00:00:00 2001 From: Caleb Fontenot Date: Sat, 8 Apr 2023 23:15:03 -0500 Subject: [PATCH] design 5 --- commands/drawDesign.cjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/drawDesign.cjs b/commands/drawDesign.cjs index 1a87812..bd431b7 100644 --- a/commands/drawDesign.cjs +++ b/commands/drawDesign.cjs @@ -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; }