diff --git a/app/bot.py b/app/bot.py index f1f5fc84..e6be15dd 100755 --- a/app/bot.py +++ b/app/bot.py @@ -49,7 +49,7 @@ async def fix_cdn_url(ctx): @bot.listen('on_message') async def react_with_dale(ctx): - if 'dale' in ctx.content: + if 'dale' in ctx.content.lower(): emoji = discord.utils.get(ctx.guild.emojis, name='dale') if emoji: await ctx.add_reaction(emoji)