diff --git a/bot.js b/bot.js index 779cdff..4bf9827 100644 --- a/bot.js +++ b/bot.js @@ -90,7 +90,7 @@ client.on(Events.MessageCreate, async (message) => { while (true) { // Fetch messages in batches of 100 - const options = { limit: 1000 }; + const options = { limit: 100 }; if (lastMessageId) { options.before = lastMessageId; }