diff --git a/bot.py b/bot.py index 487eaca..bf204bf 100644 --- a/bot.py +++ b/bot.py @@ -239,6 +239,7 @@ class Bot(commands.Bot): async def on_ready(): # Check the ./modules folder for any modules (cog.py) await self.check_for_modules() + print("Bot started!") @self.event async def on_message(message): diff --git a/main.py b/main.py index a49a723..76ea1e8 100644 --- a/main.py +++ b/main.py @@ -44,8 +44,6 @@ def main(): if not discord_bot_client.check_device(): raise BotDeviceNotFound(config['Device Name']) - print("Bot started!") - discord_bot_client.start_bot()