We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ae36ac commit fb9026dCopy full SHA for fb9026d
worlds/smz3/__init__.py
@@ -500,7 +500,14 @@ def modify_multidata(self, multidata: dict):
500
multidata["connect_names"][new_name] = payload
501
502
def fill_slot_data(self):
503
- slot_data = {}
+ slot_data = {
504
+ "goal": self.options.goal.value,
505
+ "open_tower": self.options.open_tower.value,
506
+ "ganon_vulnerable": self.options.ganon_vulnerable.value,
507
+ "open_tourian": self.options.open_tourian.value,
508
+ "sm_logic": self.options.sm_logic.value,
509
+ "key_shuffle": self.options.key_shuffle.value,
510
+ }
511
return slot_data
512
513
def collect(self, state: CollectionState, item: Item) -> bool:
0 commit comments