Skip to content

Commit 080d823

Browse files
Exempt-Medicwu4
authored andcommitted
PKMN R/B: Fixing Key Items Only + Removed Exp. All (ArchipelagoMW#3420)
1 parent e2cfd06 commit 080d823

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

worlds/pokemon_rb/regions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1560,7 +1560,7 @@ def create_regions(self):
15601560
<= self.multiworld.trap_percentage[self.player].value and combined_traps != 0):
15611561
item = self.create_item(self.select_trap())
15621562

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

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

0 commit comments

Comments
 (0)