From 3f139f2efbde0527879aac0255707741742d3bc4 Mon Sep 17 00:00:00 2001 From: LiquidCat64 <74896918+LiquidCat64@users.noreply.github.com> Date: Sun, 26 Oct 2025 04:39:14 -0600 Subject: [PATCH] =?UTF-8?q?CV64:=20Fix=20Explosive=20DeathLink=20not=20wor?= =?UTF-8?q?king=20with=20Increase=20Shimmy=20Speed=20on=C2=A0#5523?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- worlds/cv64/rom.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/worlds/cv64/rom.py b/worlds/cv64/rom.py index a40d3ab3..2e56df39 100644 --- a/worlds/cv64/rom.py +++ b/worlds/cv64/rom.py @@ -609,8 +609,8 @@ class CV64PatchExtensions(APPatchExtension): # Shimmy speed increase hack if options["increase_shimmy_speed"]: - rom_data.write_int32(0x97EB4, 0x803FE9F0) - rom_data.write_int32s(0xBFE9F0, patches.shimmy_speed_modifier) + rom_data.write_int32(0x97EB4, 0x803FEA20) + rom_data.write_int32s(0xBFEA20, patches.shimmy_speed_modifier) # Disable landing fall damage if options["fall_guard"]: