diff options
| -rw-r--r-- | bot/exts/fun/uwu.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bot/exts/fun/uwu.py b/bot/exts/fun/uwu.py index 9c6c5020..3e98ed2e 100644 --- a/bot/exts/fun/uwu.py +++ b/bot/exts/fun/uwu.py @@ -128,7 +128,7 @@ class Uwu(Cog):      def _ext_emoji_replace(self, input_string: str) -> str:          """Replaces external emojis with emoticons.""" -        groups = RE_EMOJI.findall(input_string) +        groups = REGEX_EMOJI.findall(input_string)          emojis = {Emoji.from_match(match) for match in groups}          # Replace with random emoticon if unable to display          emojis_map = { | 
