Skip to content

Commit

Permalink
feat: add listening status
Browse files Browse the repository at this point in the history
  • Loading branch information
jb3 committed Apr 28, 2023
1 parent 31e91ef commit c0a9162
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion wopr/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ class BotBase(commands.Bot):
logging.basicConfig(handlers=[InterceptHandler()], level=logging.INFO, force=True)

intents = discord.Intents.all()
bot = BotBase(intents=intents, command_prefix=CONFIG.prefix)
activity = discord.Activity(type=discord.ActivityType.listening, name="URN")
bot = BotBase(intents=intents, command_prefix=CONFIG.prefix, activity=activity)


@bot.event
Expand Down

0 comments on commit c0a9162

Please sign in to comment.