mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-09-08 13:45:46 -05:00
Fix Hidden Power recalc
Oops.
This commit is contained in:
@@ -1223,7 +1223,7 @@ internal Personal GetPersonal(int species, int formID)
|
||||
internal static int[] setHPIVs(int type, int[] ivs)
|
||||
{
|
||||
for (int i = 0; i < 6; i++)
|
||||
ivs[i] &= 0x1E + hpivs[type][i];
|
||||
ivs[i] = (ivs[i] & 0x1E) + hpivs[type][i];
|
||||
return ivs;
|
||||
}
|
||||
internal static string[] hptypes = new string[] {
|
||||
|
||||
Reference in New Issue
Block a user