Skip to content

Commit

Permalink
Update worlds/kh1/__init__.py
Browse files Browse the repository at this point in the history
Co-authored-by: Scipio Wright <[email protected]>
  • Loading branch information
gaithern and ScipioWright authored Jul 7, 2024
1 parent 3f4b569 commit a3cf066
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions worlds/kh1/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,11 +223,9 @@ def get_filler_item_name(self) -> str:
return self.random.choices([filler for filler in fillers.keys()], weights, k=1)[0]

def fill_slot_data(self) -> dict:
required_reports_eotw = self.determine_reports_required_to_open_end_of_the_world()
required_reports_door = self.determine_reports_required_to_open_final_rest_door()
slot_data = {"xpmult": int(self.options.exp_multiplier)/16
,"required_reports_eotw": int(required_reports_eotw)
,"required_reports_door": int(required_reports_door)
slot_data = {"xpmult": int(self.options.exp_multiplier)/16,
"required_reports_eotw": self.determine_reports_required_to_open_end_of_the_world(),
"required_reports_door": self.determine_reports_required_to_open_final_rest_door(),
,"door": self.options.final_rest_door.current_key
,"seed": self.multiworld.seed_name
,"advanced_logic": bool(self.options.advanced_logic)
Expand Down

0 comments on commit a3cf066

Please sign in to comment.