From ebd1898353bdd6a73edc001f970088934f6073a3 Mon Sep 17 00:00:00 2001 From: Caleb Fontenot Date: Sat, 8 Apr 2023 23:13:51 -0500 Subject: [PATCH] design 5 --- commands/drawDesign.cjs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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.";