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:
parent
1756a30acc
commit
c3cfbf8e1c
|
@ -338,5 +338,7 @@ class TerrariaWorld(World):
|
||||||
def fill_slot_data(self) -> Dict[str, object]:
|
def fill_slot_data(self) -> Dict[str, object]:
|
||||||
return {
|
return {
|
||||||
"goal": list(self.goal_locations),
|
"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]),
|
"deathlink": bool(self.multiworld.death_link[self.player]),
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue