From baf8ddb664c116f48de451958b58b9dc5b3fdfa5 Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Fri, 20 Oct 2023 17:03:11 -0500 Subject: [PATCH] Update gameplay.py --- cogs/gameplay.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cogs/gameplay.py b/cogs/gameplay.py index 8dcffdb..fce6926 100644 --- a/cogs/gameplay.py +++ b/cogs/gameplay.py @@ -1573,6 +1573,8 @@ class Gameplay(commands.Cog): valid_end = True elif latest_play.inning_half == 'bot' and abs(latest_play.home_score - latest_play.away_score) >= 10: valid_end = True + elif abs(latest_play.home_score - latest_play.away_score) >= 10 and latest_play.inning_half == 'bot': + valid_end = True if not valid_end: view = Confirm(responders=[interaction.user])