From 142f158c2749de86457d181ffe06cad7634fcefa Mon Sep 17 00:00:00 2001 From: codemann8 Date: Sun, 12 Mar 2023 20:06:40 -0500 Subject: [PATCH] Reversing chicken fix for Bonk Drops --- Rom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rom.py b/Rom.py index 8c329293..c2d0533d 100644 --- a/Rom.py +++ b/Rom.py @@ -1652,7 +1652,7 @@ def patch_rom(world, rom, player, team, enemized, is_mystery=False): # warning, this temporary patch might cause fairies to respawn differently?, limiting this to bonk drop mode only rom.write_byte(snes_to_pc(0x0DB808), 0x03) # patch fairies sprites to not permadeath like enemies rom.write_byte(snes_to_pc(0x0DB810), 0x8A) # allows heart pieces to travel across water - rom.write_byte(snes_to_pc(0x0DB730), 0x08) # allows chickens to travel across water + # rom.write_byte(snes_to_pc(0x0DB730), 0x08) # allows chickens to travel across water # allow smith into multi-entrance caves in appropriate shuffles if world.shuffle[player] in ['restricted', 'full', 'lite', 'lean', 'crossed', 'insanity'] or (world.shuffle[player] == 'simple' and world.mode[player] == 'inverted'):