From a5adaf03e5f6066342c982ecbe516bc0aea50b93 Mon Sep 17 00:00:00 2001 From: Saratii <87591431+Saratii@users.noreply.github.com> Date: Sat, 23 Nov 2024 15:17:02 -0600 Subject: [PATCH] Wrong function called in UwU cog (#1633) * better emojis replacement * Update uwu.py Hot fix: wrong function call typo. --- bot/exts/fun/uwu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/exts/fun/uwu.py b/bot/exts/fun/uwu.py index d1e43c7fe7..f871aaec03 100644 --- a/bot/exts/fun/uwu.py +++ b/bot/exts/fun/uwu.py @@ -171,7 +171,7 @@ def _uwuify(self, input_string: str, *, stutter_strength: float = 0.2, emoji_str 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",))