Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions worlds/ladx/LADXR/locations/startItem.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,16 @@


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!")

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)
2 changes: 1 addition & 1 deletion worlds/ladx/LADXR/patches/tarin.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
Loading