Added /drawtriangle command

master
Chloe Fontenot 🏳️‍⚧️ 2023-04-05 00:05:31 +07:00
parent 52921afd56
commit 972ca2d70c
2 changed files with 5 additions and 0 deletions

@ -36,6 +36,7 @@ module.exports = {
output = design4(inputString);
}
console.log(codeBlock("", output));
writeFile();
var testLength = "\n" + 'output length was ' + (output.length) + " characters.";
if (output.length + testLength.length > 2000) {
await interaction.reply('Error: String is too big. Resultant output would be too big to send to Discord. (the output length was ' + (output.length + testLength.length) + " characters.)");

@ -213,4 +213,8 @@ function checkInsult(message) {
}
}
}
}
function writeFile() {
console.log("Write file was called!");
}