aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Saratii <[email protected]>2024-11-23 15:17:02 -0600
committerGravatar GitHub <[email protected]>2024-11-23 21:17:02 +0000
commita5adaf03e5f6066342c982ecbe516bc0aea50b93 (patch)
treef6a3061c409f1e74f13446a48ba1d3868820c578
parentbetter emojis replacement (#1596) (diff)
Wrong function called in UwU cog (#1633)
* better emojis replacement * Update uwu.py Hot fix: wrong function call typo.
-rw-r--r--bot/exts/fun/uwu.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/fun/uwu.py b/bot/exts/fun/uwu.py
index d1e43c7f..f871aaec 100644
--- a/bot/exts/fun/uwu.py
+++ b/bot/exts/fun/uwu.py
@@ -171,7 +171,7 @@ class Uwu(Cog):
input_string = self._stutter(stutter_strength, input_string)
input_string = self._emoji(emoji_strength, input_string)
input_string = self._ext_emoji_replace(input_string)
- input_string = self._emoji_replace(input_string)
+ input_string = self._uwu_emojis(input_string)
return input_string
@commands.command(name="uwu", aliases=("uwuwize", "uwuify",))