Skip to content

Commit

Permalink
Wont add round 2-3 to augment_round when setting up Encounter rounds
Browse files Browse the repository at this point in the history
Wont add round 2-3 to augment_round when setting up Encounter rounds
  • Loading branch information
anthony5301 authored Apr 12, 2024
2 parents 0eebff4 + cda2af0 commit c3c8a7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion game.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
)
Expand Down

0 comments on commit c3c8a7e

Please sign in to comment.