Browse Source

Remove unnecessary console.log

pull/33/head
Abheek Dhawan 3 years ago
parent
commit
7881d68f4f
Signed by: abheekd GPG Key ID: 7BE81B8C14475B67
  1. 1
      events/messageCreate.js

1
events/messageCreate.js

@ -22,7 +22,6 @@ module.exports = {
answers[1] = answers[1].slice(0, answers[1].length - 1); // If there are multiple elements, it means there was an 'accept' and therefore a trailing ')' which should be removed answers[1] = answers[1].slice(0, answers[1].length - 1); // If there are multiple elements, it means there was an 'accept' and therefore a trailing ')' which should be removed
answers = [answers[0], ...answers[1].split(new RegExp(' OR ', 'i'))]; // Use the first element plus the last element split by 'OR' case insensitive answers = [answers[0], ...answers[1].split(new RegExp(' OR ', 'i'))]; // Use the first element plus the last element split by 'OR' case insensitive
} }
console.log(answers);
const dataEmbed = new MessageEmbed() const dataEmbed = new MessageEmbed()
.setTitle('Data') .setTitle('Data')
.setDescription(`\`\`\`json\n${JSON.stringify(data, null, 2)}\`\`\``); .setDescription(`\`\`\`json\n${JSON.stringify(data, null, 2)}\`\`\``);

Loading…
Cancel
Save