mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 22:40:22 +00:00
Fix inverted setShinyPID copying EC
Thanks JSS!
This commit is contained in:
parent
2ce5e442b1
commit
c757f59377
1 changed files with 1 additions and 1 deletions
|
@ -2105,7 +2105,7 @@ namespace PKHeX
|
|||
pkm.setShinyPID();
|
||||
TB_PID.Text = pkm.PID.ToString("X8");
|
||||
|
||||
if (pkm.Format >= 6)
|
||||
if (pkm.Format < 6)
|
||||
TB_EC.Text = TB_PID.Text;
|
||||
|
||||
getQuickFiller(dragout);
|
||||
|
|
Loading…
Reference in a new issue