aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-02-07 12:04:51 +0000
committerGravatar GitHub <[email protected]>2018-02-07 12:04:51 +0000
commit764443dbc9413c9d708875777d554c8dbd5d1479 (patch)
tree2a8f85757ea367185d34ee8c5889e12a9694fbb5
parentFix imports :pensive: (diff)
Add "Now playing" status (#1)
-rw-r--r--bot/__main__.py6
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")