diff options
| -rw-r--r-- | bot/__main__.py | 4 | ||||
| -rw-r--r-- | bot/formatter.py (renamed from bot/cogs/formatter.py) | 0 |
2 files changed, 3 insertions, 1 deletions
diff --git a/bot/__main__.py b/bot/__main__.py index 6d5c2c063..306e33ff5 100644 --- a/bot/__main__.py +++ b/bot/__main__.py @@ -5,6 +5,7 @@ from discord import Game from discord.ext.commands import AutoShardedBot, when_mentioned_or from bot.utils import CaseInsensitiveDict +from bot.formatter import Formatter bot = AutoShardedBot( command_prefix=when_mentioned_or( @@ -14,7 +15,8 @@ bot = AutoShardedBot( ">>>", ">>", ">" ), # Order matters (and so do commas) game=Game(name="Help: bot.help()"), - help_attrs={"aliases": ["help()"]} + help_attrs={"aliases": ["help()"]}, + formatter=Formatter() ) bot.cogs = CaseInsensitiveDict() diff --git a/bot/cogs/formatter.py b/bot/formatter.py index 56f25fbd6..56f25fbd6 100644 --- a/bot/cogs/formatter.py +++ b/bot/formatter.py |