diff --git a/Legality/Core.cs b/Legality/Core.cs index 437976c12..99dfd5be9 100644 --- a/Legality/Core.cs +++ b/Legality/Core.cs @@ -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 diff --git a/Resources/text/changelog.txt b/Resources/text/changelog.txt index f0aa34237..03b531de6 100644 --- a/Resources/text/changelog.txt +++ b/Resources/text/changelog.txt @@ -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.