Remove debugging

This commit is contained in:
Ralph 2021-09-13 11:57:20 -04:00 committed by GitHub
parent c307596ec4
commit 2b912d7fd1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -52,8 +52,6 @@ let checkForCommand = function(message) {
if (!message.author.bot && message.content.toLowerCase().indexOf('!helpcommands') >= 0) {
let bundle = commands['!helpcommands'].bundle;
bundle.description = '**' + commandsList + '**';
console.log(bundle);
console.log(bundle.description);
message.channel.send({embeds: [bundle]});
}
};