From 3eb9e7050f7dae3c8da5f53b38b1fb60b9385f24 Mon Sep 17 00:00:00 2001 From: PoryGone <98504756+PoryGone@users.noreply.github.com> Date: Mon, 29 Aug 2022 14:04:02 -0400 Subject: [PATCH] DKC3: Fix Wrinkly Softlock (#963) --- worlds/dkc3/Rom.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/worlds/dkc3/Rom.py b/worlds/dkc3/Rom.py index 90c4507e..2bb5221a 100644 --- a/worlds/dkc3/Rom.py +++ b/worlds/dkc3/Rom.py @@ -502,6 +502,10 @@ def patch_rom(world, rom, player, active_level_list): # Make Swanky free rom.write_byte(0x348C48, 0x00) + rom.write_bytes(0x34AB70, bytearray([0xEA, 0xEA])) + rom.write_bytes(0x34ABF7, bytearray([0xEA, 0xEA])) + rom.write_bytes(0x34ACD0, bytearray([0xEA, 0xEA])) + # Banana Bird Costs if world.goal[player] == "banana_bird_hunt": banana_bird_cost = math.floor(world.number_of_banana_birds[player] * world.percentage_of_banana_birds[player] / 100.0)