From 0465a7bbf95370d48313162b2cf38b2f766bae73 Mon Sep 17 00:00:00 2001 From: PoryGone Date: Mon, 6 Nov 2023 22:37:36 -0500 Subject: [PATCH] Missed cleanup --- worlds/dk64/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/worlds/dk64/__init__.py b/worlds/dk64/__init__.py index c8f856b920ce..7276a6f7950c 100644 --- a/worlds/dk64/__init__.py +++ b/worlds/dk64/__init__.py @@ -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): @@ -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):