Skip to content

Commit

Permalink
Pokemon Crystal: Blacklist struggle from random TMs
Browse files Browse the repository at this point in the history
  • Loading branch information
AliceMousie committed Jun 1, 2024
1 parent 502ba44 commit f700ad1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/pokemon_crystal/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def set_rival_fight(trainer_name, trainer, new_pokemon):

if self.options.randomize_tm_moves.value:
move_pool = [move_data for move_name, move_data in copy.deepcopy(crystal_data.moves).items() if
not move_data.is_hm and move_name not in ["ROCK_SMASH", "NO_MOVE"]]
not move_data.is_hm and move_name not in ["ROCK_SMASH", "NO_MOVE", "STRUGGLE"]]
self.random.shuffle(move_pool)
for tm_name, tm_data in self.generated_tms.items():
if tm_data.is_hm or tm_name == "ROCK_SMASH":
Expand Down

0 comments on commit f700ad1

Please sign in to comment.