diff --git a/commands/drawDesign.cjs b/commands/drawDesign.cjs index 495aa1b..1a87812 100644 --- a/commands/drawDesign.cjs +++ b/commands/drawDesign.cjs @@ -9,7 +9,7 @@ module.exports = { .setDescription('Draws a design in a codeblock') .addStringOption(option => option.setName('design') - .setDescription("Pick a design. (number 1-4)") + .setDescription("Pick a design. (number 1-5)") .setRequired(true) ) .addStringOption(option => @@ -37,6 +37,10 @@ module.exports = { break; case 4: output = design4(inputString); + break; + case 5: + output = design5(inputString); + break; } //console.log(codeBlock("", output)); let testLength = "\n" + 'output length was ' + (output.length) + " characters.";