From a8c0fc15229b62140f7b113060581ab0cd14ecb8 Mon Sep 17 00:00:00 2001 From: gaithern Date: Tue, 2 Jul 2024 14:42:21 -0500 Subject: [PATCH] Update __init__.py --- worlds/kh1/__init__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/worlds/kh1/__init__.py b/worlds/kh1/__init__.py index fb70e9dc1f9f..b23602e8966a 100644 --- a/worlds/kh1/__init__.py +++ b/worlds/kh1/__init__.py @@ -230,7 +230,10 @@ def fill_slot_data(self) -> dict: ,"required_reports_door": int(required_reports_door) ,"door": self.options.final_rest_door.current_key ,"seed": self.multiworld.seed_name - ,"advanced_logic": bool(self.options.advanced_logic)} + ,"advanced_logic": bool(self.options.advanced_logic) + ,"hundred_acre_wood": bool(self.options.hundred_acre_wood) + ,"atlantica": bool(self.options.atlantica) + ,"goal": str(self.options.goal.current_key)} if self.options.randomize_keyblade_stats: min_str_bonus = min(self.options.keyblade_min_str, self.options.keyblade_max_str) max_str_bonus = max(self.options.keyblade_min_str, self.options.keyblade_max_str)