diff --git a/apps/discordbot/bot.py b/apps/discordbot/bot.py index 544c1aa..836bd7e 100644 --- a/apps/discordbot/bot.py +++ b/apps/discordbot/bot.py @@ -85,6 +85,10 @@ async def on_message(self, message): ) # todo: add official <:tree:744335009002815609> await message.add_reaction(emoji) + elif "drip" in msg or "👟" in msg or "🥵" in msg: + for emoji in emoji_letters("drip"): + await message.add_reaction(emoji) + await message.add_reaction("👟") if message.author.id == ANI_NRUSIMHA_ID: emoji = get(self.emojis, name="AniChamp") if emoji: diff --git a/apps/discordbot/tests.py b/apps/discordbot/tests.py index d5db4d7..1ce0cd7 100644 --- a/apps/discordbot/tests.py +++ b/apps/discordbot/tests.py @@ -17,6 +17,8 @@ def test_reactions(self): "wtf based and breadpilled???", reactions=emoji_letters("based") + ["😎"] ) self.check_message(cpmacpma, reactions=emoji_letters("wtfiscpma")) + self.check_message("we drippin", reactions=emoji_letters("drip") + ["👟"]) + self.check_message("plain ol msg") # TODO the rest of them def test_replies(self):