From b78cdd58d34f459de58545ac667336ea473bb230 Mon Sep 17 00:00:00 2001 From: threeandthreee Date: Sat, 21 Mar 2026 07:05:00 -0400 Subject: [PATCH] init --- worlds/ladx/LADXR/locations/startItem.py | 6 +----- worlds/ladx/LADXR/patches/tarin.py | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/worlds/ladx/LADXR/locations/startItem.py b/worlds/ladx/LADXR/locations/startItem.py index 6cd9651671ac..5fdc2cd43ae8 100644 --- a/worlds/ladx/LADXR/locations/startItem.py +++ b/worlds/ladx/LADXR/locations/startItem.py @@ -7,15 +7,11 @@ class StartItem(DroppedKey): - MULTIWORLD = False - def __init__(self): super().__init__(0x2A3) self.give_bowwow = False def patch(self, rom, option, *, multiworld=None): - assert multiworld is None - if self.give_bowwow: option = BOWWOW rom.texts[0xC8] = formatText("Got BowWow!") @@ -23,4 +19,4 @@ def patch(self, rom, option, *, multiworld=None): if option != SHIELD: rom.patch(5, 0x0CDA, ASM("ld a, $22"), ASM("ld a, $00")) # do not change links sprite into the one with a shield - super().patch(rom, option) + super().patch(rom, option, multiworld=multiworld) diff --git a/worlds/ladx/LADXR/patches/tarin.py b/worlds/ladx/LADXR/patches/tarin.py index d84935634e32..91c81ebd99a4 100644 --- a/worlds/ladx/LADXR/patches/tarin.py +++ b/worlds/ladx/LADXR/patches/tarin.py @@ -16,7 +16,7 @@ def updateTarin(rom): ld a, $91 call $2385 """), ASM(""" - ld a, $0B ; GiveItemAndMessageForRoom + ld a, $0E ; GiveItemAndMessageForRoomMultiworld rst 8 """), fill_nop=True)