mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 06:20:25 +00:00
Use calculated level instead of stat level
This commit is contained in:
parent
968eabd053
commit
c4f9819314
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ namespace PKHeX
|
|||
public int SPD_IV => pk6.IV_SPD;
|
||||
public int SPE_IV => pk6.IV_SPE;
|
||||
public uint EXP => pk6.EXP;
|
||||
public int Level => pk6.Stat_Level;
|
||||
public int Level => pk6.CurrentLevel;
|
||||
public int HP_EV => pk6.EV_HP;
|
||||
public int ATK_EV => pk6.EV_ATK;
|
||||
public int DEF_EV => pk6.EV_DEF;
|
||||
|
|
Loading…
Reference in a new issue