From 1c1702f897951a173c38d54c6eb4127863be9e9d Mon Sep 17 00:00:00 2001 From: Neuro Assassin <42872277+NeuroAssassin@users.noreply.github.com> Date: Fri, 12 Jun 2020 20:35:56 -0400 Subject: [PATCH] Lower content (#128) --- luigipoker/luigipoker.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/luigipoker/luigipoker.py b/luigipoker/luigipoker.py index 18884c1..54f77c6 100644 --- a/luigipoker/luigipoker.py +++ b/luigipoker/luigipoker.py @@ -157,11 +157,11 @@ class LuigiPoker(commands.Cog): except asyncio.TimeoutError: await ctx.send("No response.") return await self.fold(ctx) - if "stay" in user_resp.content: + if "stay" in user_resp.content.lower(): return await self.stay(ctx) - elif "hit" in user_resp.content: + elif "hit" in user_resp.content.lower(): return await self.hit(ctx) - elif "fold" in user_resp.content: + elif "fold" in user_resp.content.lower(): return await self.fold(ctx) else: log.error(