Skip to content

Commit

Permalink
Randomization no longer removes flags being set
Browse files Browse the repository at this point in the history
  • Loading branch information
Kobazco committed Mar 2, 2023
1 parent 51dca78 commit 7f4f15d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MiitopiaRandomizer/randomizationOptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def randomize_battles(is_switch: bool, randomize_music=True, randomize_backgroun
# Store this new random enemy
randomized_row[enemy_index] = new_enemy
# Clear out remaining enemy cells
for j in range(enemy_index+1, 11):
for j in range(enemy_index+1, 9):
randomized_row[j] = ''
# Once all the enemies are randomized, we can write the row
csv_writer.writerow(randomized_row)
Expand Down

0 comments on commit 7f4f15d

Please sign in to comment.