Skip to content

Commit

Permalink
Fix import being removed
Browse files Browse the repository at this point in the history
  • Loading branch information
dyceron committed Sep 29, 2023
1 parent 1febce4 commit 182f43f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions open_samus_returns_rando/samus_returns_patcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
from open_samus_returns_rando.specific_patches.door_patches import patch_doors
from open_samus_returns_rando.specific_patches.heat_room_patches import patch_heat_rooms
from open_samus_returns_rando.specific_patches.static_fixes import apply_static_fixes
from open_samus_returns_rando.specific_patches.tunable_patches import patch_tunables
from open_samus_returns_rando.validator_with_default import DefaultValidatingDraft7Validator

T = typing.TypeVar("T")
Expand Down Expand Up @@ -135,6 +136,9 @@ def patch_extracted(input_path: Path, output_path: Path, configuration: dict):
# Patch door types and make shields on both sides
patch_doors(editor)

# Patch tunables
patch_tunables(editor)

# Specific game patches
game_patches.apply_game_patches(editor, configuration.get("game_patches", {}))

Expand Down

0 comments on commit 182f43f

Please sign in to comment.