From 89c0c508db7a5442fcc9dd4271cd9191c3641f31 Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Sat, 9 Mar 2024 20:40:09 -0600 Subject: [PATCH] Fixed xcheck F1/F2 bug --- cogs/gameplay.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cogs/gameplay.py b/cogs/gameplay.py index 9d2b884..5edf6d9 100644 --- a/cogs/gameplay.py +++ b/cogs/gameplay.py @@ -4071,9 +4071,9 @@ class Gameplay(commands.Cog): else: await question.delete() - if view.value == 'fly A': + if view.value == 'F1': fly_code = 'a' - elif view.value == 'fly B': + elif view.value == 'F2': fly_code = 'b' else: fly_code = 'c'