Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion Goals.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def update_reachable_goals(self, starting_search: Search, full_search: Search) -

def replace_goal_names(worlds: list[World]) -> None:
for world in worlds:
if world.settings.shuffle_dungeon_rewards in ('vanilla', 'reward'):
if world.hint_dist_user['boss_goal_names'] and world.settings.shuffle_dungeon_rewards in ('vanilla', 'reward'):
bosses = [
location
for location in world.get_filled_locations()
Expand Down
2 changes: 2 additions & 0 deletions World.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,8 @@ def __init__(self, world_id: int, settings: Settings, resolve_randomized_setting
self.hint_dist_user['upgrade_hints'] = 'off'
if 'combine_trial_hints' not in self.hint_dist_user:
self.hint_dist_user['combine_trial_hints'] = False
if 'boss_goal_names' not in self.hint_dist_user:
self.hint_dist_user['boss_goal_names'] = True

# Validate hint distribution format
# Originally built when I was just adding the type distributions
Expand Down