diff options
| author | hev7 <143887945+hev7@users.noreply.github.com> | 2025-10-21 19:37:13 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-21 21:37:13 +0300 |
| commit | 7d2e6ba444de8cd6fc0b3d16d56387db53984173 (patch) | |
| tree | 30bed7638c86975e6feaa0ccefe00fbdd8de3d9b /src/d/actor/d_a_mg_rod.cpp | |
| parent | 9155add1f655667a89c39f9573d634c4dc358885 (diff) | |
d_a_npc_len matching (#2748)
* d_a_npc_len matching
* HIO
* more work on len
* d_a_midna work for PAL
* mg_rod PAL work
Diffstat (limited to 'src/d/actor/d_a_mg_rod.cpp')
| -rw-r--r-- | src/d/actor/d_a_mg_rod.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/d/actor/d_a_mg_rod.cpp b/src/d/actor/d_a_mg_rod.cpp index 2303bff1f7..41a8c8c7b2 100644 --- a/src/d/actor/d_a_mg_rod.cpp +++ b/src/d/actor/d_a_mg_rod.cpp @@ -5720,6 +5720,12 @@ static int dmg_rod_Execute(dmg_rod_class* i_this) { } else { data_804BBBD4 = 0; } + #elif VERSION == VERSION_GCN_PAL + if (dComIfGs_getPalLanguage() == 0) { + data_804BBBD4 = 2; + } else { + data_804BBBD4 = 0; + } #else data_804BBBD4 = 1; #endif @@ -6277,6 +6283,12 @@ static int dmg_rod_Create(fopAc_ac_c* i_this) { } else { data_804BBBD4 = 0; } + #elif VERSION == VERSION_GCN_PAL + if (dComIfGs_getPalLanguage() == 0) { + data_804BBBD4 = 2; + } else { + data_804BBBD4 = 0; + } #else data_804BBBD4 = 1; #endif |
