mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-12 23:37:07 +00:00
Language dex
This commit is contained in:
parent
e012477719
commit
915397270a
2 changed files with 9 additions and 3 deletions
|
@ -7657,6 +7657,12 @@ namespace PKHeX
|
|||
{
|
||||
savefile[dexoff + 0x7F000 * savindex + (species - 1) / 8] |= (byte)(1 << ((species - 1) % 8));
|
||||
}
|
||||
|
||||
// Set the Language
|
||||
if (lang >= 0)
|
||||
{
|
||||
savefile[0x1A7C8 + 0x7F000 * savindex + ((species - 1) * 7 + lang) / 8] |= (byte)(1 << ((((species - 1) * 7) + lang) % 8));
|
||||
}
|
||||
}
|
||||
private void fixParty()
|
||||
{
|
||||
|
|
|
@ -290,7 +290,7 @@ http://projectpokemon.org/forums/showthread.php?36986
|
|||
- Fixed: Bad Eggs will now show a Red background instead of causing errors.
|
||||
- Fixed: Transferring previous gen files will now have the correct friendship and met level.
|
||||
|
||||
08/10/14 - New Update:
|
||||
08/10/14 - New Update: (130)
|
||||
- Added: Pokedex editing
|
||||
- Added: Setting a Pokemon into a slot will add the Pokedex entry if it hasn't been for that language.
|
||||
- Added: Pokedex received flag.
|
||||
- Added: Setting a Pokemon into a slot will add the Pokedex entry if it hasn't been, additionally for that language.
|
||||
- Added: Pokedex obtained flag.
|
Loading…
Reference in a new issue