From c571e03495581de5f3c48529f74503bc90814614 Mon Sep 17 00:00:00 2001 From: CL TheDreWen Date: Mon, 3 Nov 2025 14:24:47 +0100 Subject: [PATCH] fix(client): log loaded guild configurations on client ready --- src/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/index.ts b/src/index.ts index bc0e185..a368845 100644 --- a/src/index.ts +++ b/src/index.ts @@ -86,6 +86,9 @@ client.on(Events.InteractionCreate, async interaction => { client.once(Events.ClientReady, readyClient => { console.log(`Ready! Logged in as ${readyClient.user.tag}`); + client.guilds.cache.forEach((value) => { + console.log(`${value.name} conf loaded !`); + }); statusService.setClient(client); });