Skip to content

Commit

Permalink
KH2: Fix validAbilitys (ArchipelagoMW#1714)
Browse files Browse the repository at this point in the history
  • Loading branch information
JaredWeakStrike authored Apr 15, 2023
1 parent 3d8bc0b commit 0122eb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/kh2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def keyblade_fill(self):
# Kingdom Key cannot have No Experience so plandoed here instead of checking 26 times if its kingdom key
random_ability = self.multiworld.per_slot_randoms[self.player].choice(self.valid_abilities)
while random_ability == ItemName.NoExperience:
random_ability = self.multiworld.per_slot_randoms[self.player].choice(self.validAbilitys)
random_ability = self.multiworld.per_slot_randoms[self.player].choice(self.valid_abilities)
self.plando_locations[LocationName.KingdomKeySlot] = random_ability
self.item_quantity_dict[random_ability] -= 1
self.sora_keyblade_ability_pool[random_ability] -= 1
Expand Down

0 comments on commit 0122eb3

Please sign in to comment.