diff --git a/start_bot.py b/start_bot.py index ef68bcd..20848c4 100644 --- a/start_bot.py +++ b/start_bot.py @@ -43,6 +43,9 @@ bot = commands.Bot(command_prefix="!", intents=intents) async def on_ready(): log.info(f"logged in as {bot.user} (id={bot.user.id if bot.user else '?'})") log.info(f"connected to {len(bot.guilds)} guild(s)") + await bot.change_presence( + activity=discord.CustomActivity(name="Soon...") + ) if __name__ == "__main__":