the bot takes a long time to edit the message 4 to 3 seconds and sometimes doesn't even delete the message
module.exports.run = async (client, message, args) => {
let arr = [];
message.channel.send("Say your favorite numbers, I will list them.").then(msg => {
const collector = msg.channel.createMessageCollector(({ author }) => author.id == message.author.id, {max: 5});
collector.on('collect', (col) => {
arr.push(col.content)
col.delete()
msg.edit(arr.join(', '))
});
});
};
question from:
https://stackoverflow.com/questions/65878195/discordapierror-unknown-message-collector 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…