Skip to content

Commit

Permalink
Missed cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
PoryGone committed Nov 7, 2023
1 parent 104bb8e commit 0465a7b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions worlds/dk64/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ class DK64World(World):

web = DK64Web()

def __init__(self, world: MultiWorld, player: int):
def __init__(self, multiworld: MultiWorld, player: int):
self.rom_name_available_event = threading.Event()
super().__init__(world, player)
super().__init__(multiworld, player)

@classmethod
def stage_assert_generate(cls, multiworld: MultiWorld):
Expand All @@ -59,7 +59,7 @@ def stage_assert_generate(cls, multiworld: MultiWorld):

def _get_slot_data(self):
return {
#"death_link": self.world.death_link[self.player].value,
#"death_link": self.options.death_link.value,
}

def generate_early(self):
Expand Down

0 comments on commit 0465a7b

Please sign in to comment.