design 5
This commit is contained in:
parent
c9fc5b0842
commit
ebd1898353
@ -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.";
|
||||
|
Loading…
Reference in New Issue
Block a user