master
Chloe Fontenot 🏳️‍⚧️ 2023-04-08 23:13:51 +07:00
parent c9fc5b0842
commit ebd1898353
1 changed files with 5 additions and 1 deletions

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