Browse Source

Fix intents

pull/10/head
Abheek Dhawan 4 years ago
parent
commit
bb53da9267
  1. 4
      bot/awesomescibo.js

4
bot/awesomescibo.js

@ -3,7 +3,7 @@
const Discord = require("discord.js"); const Discord = require("discord.js");
const Intents = Discord.Intents; const Intents = Discord.Intents;
const client = new Discord.Client({ const client = new Discord.Client({
intents: [], intents: ["GUILDS", "GUILD_MESSAGES", "GUILD_MESSAGE_REACTIONS", "DIRECT_MESSAGES", "DIRECT_MESSAGE_REACTIONS"],
partials: ["MESSAGE", "CHANNEL", "REACTION"], partials: ["MESSAGE", "CHANNEL", "REACTION"],
}); });
const fetch = require("node-fetch"); const fetch = require("node-fetch");
@ -158,8 +158,6 @@ function training(subject, interaction) {
data = res.data.question; data = res.data.question;
const messageFilter = (m) => m.author.id === authorId; const messageFilter = (m) => m.author.id === authorId;
interaction.reply(data.tossup_question).then(() => { interaction.reply(data.tossup_question).then(() => {
console.log(interaction);
console.log(interaction.channel);
interaction.channel.awaitMessages(messageFilter, { interaction.channel.awaitMessages(messageFilter, {
max: 1, max: 1,
time: 30000, time: 30000,

Loading…
Cancel
Save