From 4bc248515cef8889367e9f972ce6af4e7b7e50cc Mon Sep 17 00:00:00 2001 From: ercdndrs <55447330+ercdndrs@users.noreply.github.com> Date: Sat, 26 Dec 2020 23:09:48 -0500 Subject: [PATCH] v0.4.1 - Fixed a bug in the Strong Boss mode --- AutoMaxLair.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AutoMaxLair.py b/AutoMaxLair.py index 1d24ed6e..40e34ab2 100644 --- a/AutoMaxLair.py +++ b/AutoMaxLair.py @@ -412,7 +412,7 @@ def select_pokemon(inst): inst.substage += 1 elif inst.substage == 8 and stage_time > 1: # Reset the game if the seed should be preserved - if 'strong boss' in inst.mode.lower(): + if 'strong boss' in inst.mode.lower() and inst.num_caught == 4: inst.substage = 420 inst.timer = time.time() return 'select_pokemon'