Skip to content

Commit

Permalink
Fix issue causing mandatory patches not to be applied
Browse files Browse the repository at this point in the history
  • Loading branch information
SolventMercury committed Jan 1, 2022
1 parent e14bab8 commit e0b374b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/SuperDuperMetroid/ROM_Patcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit e0b374b

Please sign in to comment.