LttP: fix percentage Triforce Pieces and missed cleanup from #3160 (#3178)

This commit is contained in:
Silvris
2024-04-19 16:10:10 -05:00
committed by GitHub
parent a06bca95ad
commit 8021ec744f
2 changed files with 3 additions and 3 deletions

View File

@@ -484,8 +484,8 @@ class ALTTPWorld(World):
if state.has('Silver Bow', item.player):
return
elif state.has('Bow', item.player) and (self.difficulty_requirements.progressive_bow_limit >= 2
or self.glitches_required == 'no_glitches'
or self.swordless): # modes where silver bow is always required for ganon
or self.multiworld.glitches_required[self.player] == 'no_glitches'
or self.multiworld.swordless[self.player]): # modes where silver bow is always required for ganon
return 'Silver Bow'
elif self.difficulty_requirements.progressive_bow_limit >= 1:
return 'Bow'