diff options
| author | 2020-05-08 20:56:55 +0200 | |
|---|---|---|
| committer | 2020-05-08 20:56:55 +0200 | |
| commit | d84c9494ff20bf7680b22efe056dabee98cb04a4 (patch) | |
| tree | 1273aa17a33588c022b86b6c554c506a5006e47d /bot | |
| parent | Merge pull request #400 from Numerlor/issue-command-dev-contrib (diff) | |
Show bot prefix in rich presence
This emulates the main bot's message for consistency.
Diffstat (limited to 'bot')
| -rw-r--r-- | bot/bot.py | 5 | 
1 files changed, 4 insertions, 1 deletions
| @@ -203,4 +203,7 @@ class SeasonalBot(commands.Bot):          await self._guild_available.wait() -bot = SeasonalBot(command_prefix=Client.prefix) +bot = SeasonalBot( +    command_prefix=Client.prefix, +    activity=discord.Game(name=f"Commands: {Client.prefix}help"), +) | 
