Fix showdownset IV HPtype export

no need to reshuffle IVs since the pkm->showdownset defines the IVs in
the speed-first order
Closes #1824
This commit is contained in:
Kurt 2018-02-07 20:59:36 -08:00
parent 05c4a0f286
commit 22a2056a91

View file

@ -218,7 +218,7 @@ namespace PKHeX.Core
var str = $"- {moves[move]}";
if (move == 237) // Hidden Power
{
int hp = GetHiddenPowerType(IVsSpeedFirst);
int hp = GetHiddenPowerType(IVs);
str += $" [{hptypes[hp]}]";
}
yield return str;