Added /drawtriangle command

This commit is contained in:
2023-04-04 20:53:17 -05:00
parent a61fa8f4f2
commit 07f83853a5
4 changed files with 70 additions and 65 deletions

View File

@@ -16,7 +16,7 @@ module.exports = {
),
async execute(interaction, client) {
var inputString = interaction.options.getString('string');
var design = interaction.options.getString('string');
var design = interaction.options.getString('design');
if (design < 1 || design > 3) {
await interaction.reply('Invalid design choice.');
}