Merge branch 'master' of ssh://gitea.calebfontenot.com:25566/CCF_100/NoMoreAcronyms
This commit is contained in:
@@ -35,12 +35,13 @@ module.exports = {
|
|||||||
|
|
||||||
}
|
}
|
||||||
console.log(codeBlock("", output));
|
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.");
|
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;
|
return;
|
||||||
}
|
}
|
||||||
await interaction.reply(codeBlock("", output));
|
await interaction.reply(codeBlock("", output) + testLength);
|
||||||
await interaction.reply('output length was ' + output.length + " characters.");
|
await interaction.reply();
|
||||||
console.log("User " + interaction.user.tag + " ran /drawtriangle");
|
console.log("User " + interaction.user.tag + " ran /drawtriangle");
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user