From cda2af02b063f34996c55ce2c0d5baf2c11350c8 Mon Sep 17 00:00:00 2001 From: Enterly <36875936+anthony5301@users.noreply.github.com> Date: Sat, 13 Apr 2024 00:13:59 +0800 Subject: [PATCH] Wont add round 2-3 to augment_round when setting up Encounter rounds --- game.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game.py b/game.py index f324737..1684c0d 100644 --- a/game.py +++ b/game.py @@ -197,7 +197,7 @@ def encounter_round_setup(self) -> None: game_assets.ENCOUNTER_ROUNDS.add( self.round[0].split("-")[0] + "-" + str(index + 1) ) - if index+1 == 2 and int(self.round[0].split("-")[0]) <= 4: + if index+1 == 2 and 3 <= int(self.round[0].split("-")[0]) <= 4: game_assets.AUGMENT_ROUNDS.add( self.round[0].split("-")[0] + "-" + str(index + 2) )