Skip to content

Commit

Permalink
Reverting the style change to see if it makes the tests happy
Browse files Browse the repository at this point in the history
  • Loading branch information
Elagatua committed Aug 28, 2024
1 parent 3e3a25a commit 7491ec9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion World.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ def __missing__(self, dungeon_name: str) -> EmptyDungeonInfo:
if goal_list1 != [goal.name for goal in category.goals] and category.name not in minor_goal_categories:
self.one_hint_per_goal = False

if self.hint_dist_user['one_hint_per_goal']:
if 'one_hint_per_goal' in self.hint_dist_user:
self.one_hint_per_goal = self.hint_dist_user['one_hint_per_goal']

# initialize category check for first rounds of goal hints
Expand Down

0 comments on commit 7491ec9

Please sign in to comment.