mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 14:44:24 +00:00
Fix DexNav max level boost
Closes #4204 flute actually applies in this case
This commit is contained in:
parent
66ac64bc85
commit
5d2c20d449
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ public sealed record EncounterSlot6AO(EncounterArea6AO Parent, ushort Species, b
|
|||
|
||||
private const int FluteBoostMin = 4; // White Flute decreases levels.
|
||||
private const int FluteBoostMax = 4; // Black Flute increases levels.
|
||||
private const int DexNavBoost = 30; // Maximum DexNav chain
|
||||
private const int DexNavBoost = 29 + FluteBoostMax; // Maximum DexNav chain (95) and Flute.
|
||||
|
||||
public bool IsMatchExact(PKM pk, EvoCriteria evo)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue