Increase dexnav max boost

13->25
This commit is contained in:
Kaphotics 2016-03-19 09:14:48 -07:00
parent 0d13e812a9
commit a6d5494193
2 changed files with 3 additions and 2 deletions

View file

@ -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 + 13) // DexNav Boost Range ??
? slots.Where(slot => slot.LevelMin <= lvl && lvl <= slot.LevelMax + 25) // DexNav Boost Range ??
: slots.Where(slot => slot.LevelMin <= lvl && lvl <= slot.LevelMax); // Non-boosted Level
// Filter for Form Specific

View file

@ -676,4 +676,5 @@ http://projectpokemon.org/forums/showthread.php?36986
- Changed: Chinese Translation updated. Thanks easyworld!
- Changed: Startup times of the program may be quicker.
- Hotfix: Added missing Lost Hotel & Soaring static encounters. Thanks froslumugu & \!
- Hotfix: Keldeo Secret Sword detection.
- Hotfix: Keldeo Secret Sword detection.
- Hotfix: DexNav level range increased. Thanks fr3quency!