Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Hints.py
Original file line number Diff line number Diff line change
Expand Up @@ -1650,7 +1650,10 @@ def build_world_gossip_hints(spoiler: Spoiler, world: World, checked_locations:
else:
logging.getLogger('').debug('Placed %s hint for %s.', hint_type, ', '.join([location.name for location in locations]))
if not place_ok and custom_fixed:
logging.getLogger('').debug('Failed to place %s fixed hint for %s.', hint_type, ', '.join([location.name for location in locations]))
if locations is None:
logging.getLogger('').debug('Failed to place %s fixed hint.', hint_type)
else:
logging.getLogger('').debug('Failed to place %s fixed hint for %s.', hint_type, ', '.join([location.name for location in locations]))
fixed_hint_types.insert(0, hint_type)


Expand Down