Fix characteristics

Speed comes before SPA/SPD so I just have it reassign the pm6stat.
This commit is contained in:
Kurt 2015-07-18 20:40:11 -07:00
parent 04229d1b9a
commit 9fcd3a2769

View file

@ -1529,7 +1529,7 @@ namespace PKHeX
break; // P%6 is this stat 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(); updateStats();
} }
private void updateEVs(object sender, EventArgs e) private void updateEVs(object sender, EventArgs e)