From 357ea51066f2535b4ea1072fb7d8b467c3bc29b4 Mon Sep 17 00:00:00 2001 From: Interitio Date: Wed, 25 Feb 2026 19:40:27 +1000 Subject: [PATCH] tweak(yarn): Whitelist arrows for emoji removal --- src/modules/yarn/cog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/yarn/cog.py b/src/modules/yarn/cog.py index cdb1977..4b8c75d 100644 --- a/src/modules/yarn/cog.py +++ b/src/modules/yarn/cog.py @@ -44,7 +44,7 @@ class YarnCog(LionCog): if ( reaction.me and reaction.count == 1 - and str(reaction.emoji) not in ("⬅️", "➡️") + and str(reaction.emoji) not in ("▶", "◀") ): await reaction.remove(self.bot.user)