diff options
author | 2021-09-22 00:18:28 +0300 | |
---|---|---|
committer | 2021-09-22 00:18:28 +0300 | |
commit | 9585c5fe1d11b281f2a81bf40a86e42a3836d98b (patch) | |
tree | 182f316cc9bdb7c4e9b534e269a408792307a799 /bot | |
parent | Replaced the old implementation for uwuification with a smarter approach (diff) |
Uwuification done.
Diffstat (limited to 'bot')
-rw-r--r-- | bot/exts/fun/uwu.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bot/exts/fun/uwu.py b/bot/exts/fun/uwu.py index 2b063e1c..a6be7c3d 100644 --- a/bot/exts/fun/uwu.py +++ b/bot/exts/fun/uwu.py @@ -141,3 +141,7 @@ class Uwu(Cog): if converted_text: converted_text = f">>> {converted_text.lstrip('> ')}" await ctx.send(content=converted_text, embed=embed) + +def setup(bot: Bot) -> None: + """Load the uwu cog.""" + bot.add_cog(Uwu(bot)) |