Spoiler: add player name to sphere 0 items in playthrough (#1607)

This commit is contained in:
alwaysintreble 2023-03-27 12:42:15 -05:00 committed by GitHub
parent a7f7f91aaf
commit b7c74919b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1208,7 +1208,7 @@ class Spoiler():
raise RuntimeError(f'Not all required items reachable. Unreachable locations: {required_locations}')
# we can finally output our playthrough
self.playthrough = {"0": sorted([str(item) for item in
self.playthrough = {"0": sorted([self.multiworld.get_name_string_for_object(item) for item in
chain.from_iterable(multiworld.precollected_items.values())
if item.advancement])}