diff options
author | 2020-05-23 00:33:12 -0400 | |
---|---|---|
committer | 2020-05-23 00:33:12 -0400 | |
commit | 29304c07254ebdb652f402a8ca05229bc90668ae (patch) | |
tree | b9f37e023c514d3d88945ed7988b438840fbf521 /bot/bot.py | |
parent | exit minesweeper early if DM disabled (diff) | |
parent | Merge pull request #403 from Akarys42/boo-fix (diff) |
Merge branch 'master' into minesweeper-disabled-dm-handling
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"), +) |