Skip to content

Commit

Permalink
Pokemon FRLG: fixed issue regarding kanto only and cerulean cave req
Browse files Browse the repository at this point in the history
  • Loading branch information
vyneras committed Aug 30, 2024
1 parent 2ff5be2 commit 5d80b82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions worlds/pokemon_frlg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,8 @@ def generate_early(self) -> None:
self.blacklisted_moves = {frlg_data.moves[name] for name in self.options.move_blacklist.value}

if (self.options.kanto_only and
self.options.cerulean_cave_requirement == CeruleanCaveRequirement.option_vanilla or
self.options.cerulean_cave_requirement == CeruleanCaveRequirement.option_restore_network):
(self.options.cerulean_cave_requirement == CeruleanCaveRequirement.option_vanilla or
self.options.cerulean_cave_requirement == CeruleanCaveRequirement.option_restore_network)):
logging.warning("Pokemon FRLG: Cerulean Cave Requirement for Player %s (%s) incompatible with Kanto Only. "
"Setting requirement to Defeat Champion.", self.player, self.player_name)
self.options.cerulean_cave_requirement.value = CeruleanCaveRequirement.option_champion
Expand Down

0 comments on commit 5d80b82

Please sign in to comment.