Merge branch 'master' of ssh://gitea.calebfontenot.com:25566/CCF_100/NoMoreAcronyms

This commit is contained in:
Chloe Fontenot 🏳️‍⚧️ 2023-04-04 21:26:04 -05:00
commit fa543651eb

View File

@ -35,12 +35,13 @@ module.exports = {
}
console.log(codeBlock("", output));
if (output.length > 2000) {
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 + " characters.");
return;
}
await interaction.reply(codeBlock("", output));
await interaction.reply('output length was ' + output.length + " characters.");
await interaction.reply(codeBlock("", output) + testLength);
await interaction.reply();
console.log("User " + interaction.user.tag + " ran /drawtriangle");
},
};