mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
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:
parent
05c4a0f286
commit
22a2056a91
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue