aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Gintautas Kazlauskas <[email protected]>2021-09-22 00:18:28 +0300
committerGravatar Gintautas Kazlauskas <[email protected]>2021-09-22 00:18:28 +0300
commit9585c5fe1d11b281f2a81bf40a86e42a3836d98b (patch)
tree182f316cc9bdb7c4e9b534e269a408792307a799
parentReplaced the old implementation for uwuification with a smarter approach (diff)
Uwuification done.
-rw-r--r--bot/exts/fun/uwu.py4
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))