Skip to content

Commit

Permalink
logic bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePhar committed Jul 2, 2023
1 parent 7355d4e commit fb8b78c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/infinity_gauntlet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def get_filler_item_name(self) -> str:

def has_all_stones(self, state: CollectionState):
return state.has_all(
set([item for item in self.item_name_to_id.keys() if not item.startswith("The dusty")]),
set([item for item in self.item_name_to_id.keys() if not item.startswith("the dusty")]),
self.player
)

Expand Down

0 comments on commit fb8b78c

Please sign in to comment.