Skip to content

Commit

Permalink
Fix comment typo
Browse files Browse the repository at this point in the history
"be" was missing.
  • Loading branch information
Mysteryem committed Jan 29, 2025
1 parent b755759 commit b2f5948
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Fill.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def fill_restrictive(multiworld: MultiWorld, base_state: CollectionState, locati

for item in items_to_place:
# The items added into `reachable_items` are placed starting from the end of each deque in
# `reachable_items`, so the items being placed are more likely to found towards the end of `item_pool`.
# `reachable_items`, so the items being placed are more likely to be found towards the end of `item_pool`.
for p, pool_item in enumerate(reversed(item_pool), start=1):
if pool_item is item:
del item_pool[-p]
Expand Down

0 comments on commit b2f5948

Please sign in to comment.