From 898a0b7a8fe9d6c2c4666596d64a8231ff708261 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Fri, 12 Jun 2020 21:50:10 +0200 Subject: [PATCH] adjuster no longer needs to work with other basepatches, so it should not overwrite other basepatches. --- AdjusterMain.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/AdjusterMain.py b/AdjusterMain.py index 49d03c17..d55d1ae3 100644 --- a/AdjusterMain.py +++ b/AdjusterMain.py @@ -13,9 +13,6 @@ def adjust(args): if os.stat(args.rom).st_size in (0x200000, 0x400000) and os.path.splitext(args.rom)[-1].lower() == '.sfc': rom = LocalRom(args.rom, patch=False) - if os.path.isfile(args.baserom): - baserom = LocalRom(args.baserom, patch=True) - rom.orig_buffer = baserom.orig_buffer else: raise RuntimeError( 'Provided Rom is not a valid Link to the Past Randomizer Rom. Please provide one for adjusting.')