diff options
-rw-r--r-- | apworld/__init__.py | 11 |
1 files changed, 11 insertions, 0 deletions
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): | |||
62 | 62 | ||
63 | def set_rules(self): | 63 | def set_rules(self): |
64 | self.multiworld.completion_condition[self.player] = lambda state: state.has("Victory", self.player) | 64 | self.multiworld.completion_condition[self.player] = lambda state: state.has("Victory", self.player) |
65 | |||
66 | def fill_slot_data(self): | ||
67 | slot_options = [ | ||
68 | "victory_condition", "shuffle_doors", | ||
69 | ] | ||
70 | |||
71 | slot_data = { | ||
72 | **self.options.as_dict(*slot_options), | ||
73 | } | ||
74 | |||
75 | return slot_data | ||