mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
template=>pk4: Only ENG->JPN if DP, not Pt
Language bug was fixed after ENG DP (for other localizations, and Pt)
This commit is contained in:
parent
ac6fd085ba
commit
49a2cd19d0
1 changed files with 2 additions and 2 deletions
|
@ -74,8 +74,8 @@
|
|||
// Has German Language ID for all except German origin, which is English
|
||||
if (Species == (int)Core.Species.Magikarp)
|
||||
pkm.Language = (int)(pkm.Language == (int)LanguageID.German ? LanguageID.English : LanguageID.German);
|
||||
// All other trades received: English games have a Japanese language ID instead of English.
|
||||
else if (pkm.Language == (int)LanguageID.English)
|
||||
// All other trades received (DP only): English games have a Japanese language ID instead of English.
|
||||
else if (pkm.Version is not (int)GameVersion.Pt && pkm.Language == (int)LanguageID.English)
|
||||
pkm.Language = (int)LanguageID.Japanese;
|
||||
}
|
||||
else // HGSS
|
||||
|
|
Loading…
Reference in a new issue