Skip to content

Commit

Permalink
PKMN R/B: Fixing Key Items Only + Removed Exp. All (ArchipelagoMW#3420)
Browse files Browse the repository at this point in the history
  • Loading branch information
Exempt-Medic authored and qwint committed Jun 24, 2024
1 parent 45b515b commit caba31e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/pokemon_rb/regions.py
Original file line number Diff line number Diff line change
Expand Up @@ -1560,7 +1560,7 @@ def create_regions(self):
<= self.multiworld.trap_percentage[self.player].value and combined_traps != 0):
item = self.create_item(self.select_trap())

if self.multiworld.key_items_only[self.player] and (not location.event) and (not item.advancement):
if self.multiworld.key_items_only[self.player] and (not location.event) and (not item.advancement) and location.original_item != "Exp. All":
continue

if item.name in start_inventory and start_inventory[item.name] > 0 and \
Expand Down

0 comments on commit caba31e

Please sign in to comment.