From dcbd1891a7baa70086f251203177ab504bdfcea7 Mon Sep 17 00:00:00 2001 From: SiskelDev Date: Thu, 26 Jun 2025 20:07:11 +0200 Subject: [PATCH] Big Fix --- bot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }