From 5e055b88b386e7b6a0d6776fd38dfa1e823edf2a Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sun, 31 Aug 2025 12:44:38 -0400 Subject: [Apworld] Added options to slot data --- apworld/__init__.py | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'apworld') diff --git a/apworld/__init__.py b/apworld/__init__.py index 14bb4bc..4e5777a 100644 --- a/apworld/__init__.py +++ b/apworld/__init__.py @@ -62,3 +62,14 @@ class Lingo2World(World): def set_rules(self): self.multiworld.completion_condition[self.player] = lambda state: state.has("Victory", self.player) + + def fill_slot_data(self): + slot_options = [ + "victory_condition", "shuffle_doors", + ] + + slot_data = { + **self.options.as_dict(*slot_options), + } + + return slot_data -- cgit 1.4.1