From 6cf8782e23011a004e238069dcf2a329362d2db8 Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Thu, 27 Apr 2023 14:39:48 -0500 Subject: [PATCH] Update ai_manager.py Add 5+ baserunner note to pitcher fatigue --- ai_manager.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ai_manager.py b/ai_manager.py index 88e0f1f..ddacda5 100644 --- a/ai_manager.py +++ b/ai_manager.py @@ -536,7 +536,8 @@ async def pitching_ai_note(this_play: StratPlay, this_pitcher: dict): else: if len(used_pitchers) < 8: - ai_note += f'- go to the pen if the pitcher fatigues (`/log ai-pitcher-sub`)\n' + ai_note += f'- go to the pen if the pitcher fatigues **and has allowed 5+ baserunners**' \ + f'(`/log ai-pitcher-sub`)\n' else: ai_note += f' - continue with {this_pitcher["p_name"]}\n'