Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pull-assembly-patches.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import requests

VERSION = "0.11.0"
VERSION = "0.12.0"
ASSET_NAME = "Randomizer.Patches.zip"
DESTINATION_ASSEMBLY_PATH = (
Path(__file__)
Expand Down
3 changes: 0 additions & 3 deletions src/mars_patcher/mf/auto_generated_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -657,9 +657,6 @@ class Marsschemamf(typ.TypedDict, total=False):
UnexploredMap: bool = False
"""When enabled, starts you with a map where all unexplored items and non-visited tiles have a gray background. This is different from the downloaded map stations where there, the full tile is gray."""

AccessibilityPatches: bool = False
"""Whether to apply patches for better accessibility."""

LevelEdits: dict[Areaidkey, dict[str, MarsschemamfLeveledits]]
"""Specifies room edits that should be done. These will be applied last."""

Expand Down
5 changes: 0 additions & 5 deletions src/mars_patcher/mf/data/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -627,11 +627,6 @@
"description": "When enabled, starts you with a map where all unexplored items and non-visited tiles have a gray background. This is different from the downloaded map stations where there, the full tile is gray.",
"default": false
},
"AccessibilityPatches": {
"type": "boolean",
"description": "Whether to apply patches for better accessibility.",
"default": false
},
"LevelEdits": {
"type": "object",
"description": "Specifies room edits that should be done. These will be applied last.",
Expand Down
4 changes: 0 additions & 4 deletions src/mars_patcher/mf/misc_patches.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,5 @@ def apply_reveal_unexplored_doors(rom: Rom) -> None:
apply_patch_in_asm_path(rom, "unhidden_map_doors.ips")


def apply_accessibility_patch(rom: Rom) -> None:
apply_patch_in_asm_path(rom, "accessibility.ips")


def apply_instant_unmorph_patch(rom: Rom) -> None:
rom.write_8(rom.read_ptr(ReservedPointersMF.INSTANT_MORPH_FLAG_POINTER_ADDR.value), 1)
4 changes: 0 additions & 4 deletions src/mars_patcher/mf/patcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
)
from mars_patcher.mf.locations import LocationSettings
from mars_patcher.mf.misc_patches import (
apply_accessibility_patch,
apply_alternative_health_layout,
apply_base_patch,
apply_environmental_damage,
Expand Down Expand Up @@ -131,9 +130,6 @@ def patch_mf(
write_credits(rom, credits_text)

# Misc patches
if patch_data.get("AccessibilityPatches"):
apply_accessibility_patch(rom)

if patch_data.get("DisableDemos"):
disable_demos(rom)

Expand Down