Skip to content

Commit

Permalink
Fix Tallon Overworld - Temple Security Station door patch in Wii vers…
Browse files Browse the repository at this point in the history
…ion (aprilwade#63)

Adds Wii versions for the instance ID modification check when patching a
specific Tallon Overworld - Temple Security Station door that changes
since PAL version.

Co-authored-by: toasterparty <[email protected]>
  • Loading branch information
UltiNaruto and toasterparty authored Jun 14, 2024
1 parent 6546662 commit 1e32c4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/patches.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16882,7 +16882,7 @@ fn build_and_run_patches<'r>(

// Some doors have their object IDs changed in non NTSC-U versions
// NTSC-K is based on NTSC-U and shouldn't be part of those changes
if config.version == Version::Pal || config.version == Version::NtscJ {
if [Version::Pal, Version::NtscJ, Version::NtscJTrilogy, Version::NtscUTrilogy, Version::PalTrilogy].contains(&config.version) {
// Tallon Overworld - Temple Security Station
if mrea_id == 0xBDB1FCAC
&& local_dl.door_location.unwrap().instance_id == 0x00070055
Expand Down

0 comments on commit 1e32c4c

Please sign in to comment.