Fix bombs check

This commit is contained in:
compiling 2020-03-15 21:59:06 +11:00
parent e8ee3de083
commit 270fbce516
1 changed files with 1 additions and 1 deletions

View File

@ -438,7 +438,7 @@ class CollectionState(object):
or (self.has('Cane of Byrna', player) and (enemies < 6 or self.can_extend_magic(player)))
or self.can_shoot_arrows(player)
or self.has('Fire Rod', player)
or (self.has('Bombs (10)') and enemies < 6))
or (self.has('Bombs (10)', player) and enemies < 6))
def can_shoot_arrows(self, player):
if self.world.retro: