Skip to content

Commit

Permalink
pass the multiworld from remaining fill
Browse files Browse the repository at this point in the history
  • Loading branch information
alwaysintreble committed Jul 29, 2024
1 parent 8f73874 commit 955d212
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 @@ -288,7 +288,7 @@ def remaining_fill(multiworld: MultiWorld,
f"Unfilled locations:\n"
f"{', '.join(str(location) for location in locations)}\n"
f"Already placed {len(placements)}:\n"
f"{', '.join(str(place) for place in placements)}")
f"{', '.join(str(place) for place in placements)}", multiworld=multiworld)

itempool.extend(unplaced_items)

Expand Down

0 comments on commit 955d212

Please sign in to comment.