mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
Bump dexnav level to 30
This commit is contained in:
parent
a6d5494193
commit
119efdb45e
2 changed files with 2 additions and 2 deletions
|
@ -340,7 +340,7 @@ namespace PKHeX
|
|||
// Filter for Met Level
|
||||
int lvl = pk6.Met_Level;
|
||||
slots = DexNav
|
||||
? slots.Where(slot => slot.LevelMin <= lvl && lvl <= slot.LevelMax + 25) // DexNav Boost Range ??
|
||||
? slots.Where(slot => slot.LevelMin <= lvl && lvl <= slot.LevelMax + 30) // DexNav Boost Range ??
|
||||
: slots.Where(slot => slot.LevelMin <= lvl && lvl <= slot.LevelMax); // Non-boosted Level
|
||||
|
||||
// Filter for Form Specific
|
||||
|
|
|
@ -652,7 +652,7 @@ http://projectpokemon.org/forums/showthread.php?36986
|
|||
- Fixed: 4->6 Import ability transferring. Thanks zero2exe!
|
||||
- Removed: ram2sav support. If you wish to still use ram2sav, use a compiled version from 9/20/15 or earlier.
|
||||
|
||||
03/19/16 - New Update: (770)
|
||||
03/19/16 - New Update: (835)
|
||||
- Added: Legality checking for XY/ORAS origin Pokémon.
|
||||
- - Legality indication next to moves and Preview to indicate the legality of the loaded pk6.
|
||||
- - Legality indication click event to pop up why the pk6 is flagged as illegal.
|
||||
|
|
Loading…
Reference in a new issue