diff --git a/bot.py b/bot.py index e76f99f..11b3cad 100644 --- a/bot.py +++ b/bot.py @@ -64,6 +64,9 @@ class DiscordClient(commands.Bot): @self.event async def on_ready(): print(f'Logged in as {self.user} (ID: {self.user.id})') + print("Active guilds:") + for guild in self.guilds: + print(guild) @self.tree.error async def on_app_command_error(interaction, error):