Lower content (#128)

This commit is contained in:
Neuro Assassin
2020-06-12 20:35:56 -04:00
committed by GitHub
parent c1dc700e82
commit 1c1702f897

View File

@@ -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(