Terraria: Add the rest of the settings to slot data (#2116)

* Add the rest of the Terraria settings to slot data

* Update worlds/terraria/__init__.py

Co-authored-by: black-sliver <59490463+black-sliver@users.noreply.github.com>

---------

Co-authored-by: black-sliver <59490463+black-sliver@users.noreply.github.com>
This commit is contained in:
Seldom 2023-09-14 00:46:29 -07:00 committed by GitHub
parent 1756a30acc
commit c3cfbf8e1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -338,5 +338,7 @@ class TerrariaWorld(World):
def fill_slot_data(self) -> Dict[str, object]:
return {
"goal": list(self.goal_locations),
"achievements": self.multiworld.achievements[self.player].value,
"fill_extra_checks_with": self.multiworld.fill_extra_checks_with[self.player].value,
"deathlink": bool(self.multiworld.death_link[self.player]),
}