diff options
| author | 2018-02-07 12:04:51 +0000 | |
|---|---|---|
| committer | 2018-02-07 12:04:51 +0000 | |
| commit | 764443dbc9413c9d708875777d554c8dbd5d1479 (patch) | |
| tree | 2a8f85757ea367185d34ee8c5889e12a9694fbb5 | |
| parent | Fix imports :pensive: (diff) | |
Add "Now playing" status (#1)
| -rw-r--r-- | bot/__main__.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bot/__main__.py b/bot/__main__.py index 32686a27a..2dc0ccc1f 100644 --- a/bot/__main__.py +++ b/bot/__main__.py @@ -1,9 +1,13 @@ # coding=utf-8 import os +from discord import Game from discord.ext.commands import AutoShardedBot, when_mentioned_or -bot = AutoShardedBot(command_prefix=when_mentioned_or(">>> ", ">>>")) +bot = AutoShardedBot( + command_prefix=when_mentioned_or(">>> ", ">> ", ">>>", ">>"), # Order matters + game=Game(name=">>> help") +) # Internal/debug bot.load_extension("bot.cogs.logging") |