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