mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
SMZ3: Fix minimal logic considering SM boss tokens unnecessary (#4377)
This commit is contained in:
@@ -140,7 +140,8 @@ class GanonsTower(Z3Region):
|
||||
|
||||
# added for AP completion_condition when TowerCrystals is lower than GanonCrystals
|
||||
def CanComplete(self, items: Progression):
|
||||
return self.world.CanAcquireAtLeast(self.world.GanonCrystals, items, RewardType.AnyCrystal)
|
||||
return self.world.CanAcquireAtLeast(self.world.GanonCrystals, items, RewardType.AnyCrystal) and \
|
||||
self.world.CanAcquireAtLeast(self.world.TourianBossTokens, items, RewardType.AnyBossToken)
|
||||
|
||||
def CanFill(self, item: Item):
|
||||
if (self.Config.Multiworld):
|
||||
|
Reference in New Issue
Block a user