From c3cfbf8e1cc4304659a28c1b2519070a43a3f809 Mon Sep 17 00:00:00 2001 From: Seldom <38388947+Seldom-SE@users.noreply.github.com> Date: Thu, 14 Sep 2023 00:46:29 -0700 Subject: [PATCH] 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> --- worlds/terraria/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/worlds/terraria/__init__.py b/worlds/terraria/__init__.py index a56f4760..a8c823bc 100644 --- a/worlds/terraria/__init__.py +++ b/worlds/terraria/__init__.py @@ -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]), }