diff options
author | 2020-05-24 20:18:56 -0400 | |
---|---|---|
committer | 2020-05-24 20:18:56 -0400 | |
commit | 2defff0491ad15dcb692c3a60b74662378d472bd (patch) | |
tree | 346f8e57933423d086c66a512692f2615e101065 /bot/bot.py | |
parent | 5/24 - bot utils - added encoding, and notes for persist (diff) | |
parent | Merge pull request #401 from fuzzmz/minesweeper-disabled-dm-handling (diff) |
Merge branch 'master' into encoding_bug_fix
Diffstat (limited to 'bot/bot.py')
-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"), +) |