From d8dedbe7fa465420b1b4d7e2a49e42a450894870 Mon Sep 17 00:00:00 2001 From: espeon65536 Date: Mon, 15 Nov 2021 08:45:30 -0600 Subject: [PATCH] OoT Adjuster: patch death_link flag --- OoTAdjuster.py | 1 + 1 file changed, 1 insertion(+) diff --git a/OoTAdjuster.py b/OoTAdjuster.py index 10dc3551..9df4ef6e 100644 --- a/OoTAdjuster.py +++ b/OoTAdjuster.py @@ -223,6 +223,7 @@ def adjust(args): raise Exception("Invalid file extension; requires .n64, .z64, .apz5") # Call patch_cosmetics patch_cosmetics(ootworld, rom) + rom.write_byte(rom.sym('DEATH_LINK'), args.deathlink) # Output new file path_pieces = os.path.splitext(args.rom) decomp_path = path_pieces[0] + '-adjusted.n64'