diff options
| author | 2018-02-05 20:51:24 +0000 | |
|---|---|---|
| committer | 2018-02-05 20:51:24 +0000 | |
| commit | 36e8917b89ed5ccef5d701769ea54cd076f0a5a8 (patch) | |
| tree | 063aa3a1b18f6e08ef933ea33ba2030bb305817c | |
| parent | Function doesn't need to be async (diff) | |
Fix prefixes
| -rw-r--r-- | bot/__main__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/__main__.py b/bot/__main__.py index a6f6dce3d..b0cdbe803 100644 --- a/bot/__main__.py +++ b/bot/__main__.py @@ -3,7 +3,7 @@ import os from discord.ext.commands import AutoShardedBot, when_mentioned_or -bot = AutoShardedBot(command_prefix=when_mentioned_or(">>>", ">>> ")) +bot = AutoShardedBot(command_prefix=when_mentioned_or(">>> ", ">>>")) # Internal/debug bot.load_extension("bot.cogs.logging") |