mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-22 03:53:08 +00:00
Fix characteristics
Speed comes before SPA/SPD so I just have it reassign the pm6stat.
This commit is contained in:
parent
04229d1b9a
commit
9fcd3a2769
1 changed files with 1 additions and 1 deletions
|
@ -1529,7 +1529,7 @@ namespace PKHeX
|
|||
break; // P%6 is this stat
|
||||
}
|
||||
|
||||
L_Characteristic.Text = characteristics[pm6stat * 5 + maxIV % 5];
|
||||
L_Characteristic.Text = characteristics[new[]{0, 1, 2, 4, 5, 3}[pm6stat] * 5 + maxIV % 5];
|
||||
updateStats();
|
||||
}
|
||||
private void updateEVs(object sender, EventArgs e)
|
||||
|
|
Loading…
Reference in a new issue