From 4d59247e5cf4cb4eec553c1eec198e44c7060b17 Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Tue, 11 Feb 2025 00:10:53 -0600 Subject: [PATCH] Fix Steal + Overthrow on OBC 5 --- command_logic/logic_gameplay.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/command_logic/logic_gameplay.py b/command_logic/logic_gameplay.py index e7fc3e4..15d6975 100644 --- a/command_logic/logic_gameplay.py +++ b/command_logic/logic_gameplay.py @@ -2407,6 +2407,10 @@ async def steals(session: Session, interaction: discord.Interaction, this_play: else: this_play.runner = this_play.on_first this_play.on_first_final = 2 if steal_type == 'stolen-base' else 3 + + if steal_type == 'steal-plus-overthrow' and this_play.on_third: + this_play.on_third_final = 4 + log_run_scored(session, this_play.on_third, this_play, is_earned=False) elif steal_type == 'caught-stealing': this_play.outs = 1