From e0b374ba4348f78b8a941c7eab0d7e0702223cd9 Mon Sep 17 00:00:00 2001 From: SolventMercury Date: Sat, 1 Jan 2022 13:13:58 -0700 Subject: [PATCH] Fix issue causing mandatory patches not to be applied --- setup.cfg | 2 +- src/SuperDuperMetroid/ROM_Patcher.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 04229f5..9f89d7e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = SuperDuperMetroid -version = 2.0.0 +version = 2.0.1 author = Samuel Roy description = A Super Metroid patching utility long_description = file: README.md diff --git a/src/SuperDuperMetroid/ROM_Patcher.py b/src/SuperDuperMetroid/ROM_Patcher.py index 9309e6e..58eb6f1 100644 --- a/src/SuperDuperMetroid/ROM_Patcher.py +++ b/src/SuperDuperMetroid/ROM_Patcher.py @@ -1310,7 +1310,7 @@ def patch_rom(rom_file_path, item_list=None, player_name=None, recipient_list=No static_patch_dict = get_patch_dict() patches_dir = Path(__file__).parent.joinpath("Patches") - static_patches = ["DoorTransitions", "VariaRNG", "VariaTimerFix"] + static_patches = ["door_transitions", "varia_rng", "varia_timer_fix"] if "static_patches" in kwargs: static_patches += kwargs["static_patches"] for patch in static_patches: