diff --git a/worlds/oot/Hints.py b/worlds/oot/Hints.py index 9b79f135..c05f8986 100644 --- a/worlds/oot/Hints.py +++ b/worlds/oot/Hints.py @@ -650,8 +650,8 @@ def buildWorldGossipHints(world, checkedLocations=None): checkedLocations = {player: set() for player in world.world.player_ids} # If Ganondorf can be reached without Light Arrows, add to checkedLocations to prevent extra hinting - # Can only be forced with vanilla bridge - if world.bridge != 'vanilla': + # Can only be forced with vanilla bridge or trials + if world.bridge != 'vanilla' and world.trials == 0: try: light_arrow_location = world.world.find_item("Light Arrows", world.player) checkedLocations[light_arrow_location.player].add(light_arrow_location.name)