From d296d0496af1311580633a05be89ee22fac47711 Mon Sep 17 00:00:00 2001 From: Zevaryx Date: Fri, 4 Feb 2022 09:57:41 -0700 Subject: [PATCH] Remove is_on_mobile check --- jarvis/cogs/util.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/jarvis/cogs/util.py b/jarvis/cogs/util.py index 0d18689..85023e8 100644 --- a/jarvis/cogs/util.py +++ b/jarvis/cogs/util.py @@ -92,10 +92,7 @@ class UtilCog(Scale): to_send += " " elif re.match(r"^[A-Z0-9-()$@!?^'#.]$", letter): id = emotes[letter] - if ctx.author.is_on_mobile(): - to_send += f":{names[id]}:" - else: - to_send += f"<:{names[id]}:{id}>" + to_send += f":{names[id]}:" if len(to_send) > 2000: await ctx.send("Too long.", ephemeral=True) else: