From b9a9b6db329fdc01cb336b0b50d7eb7b6b75b2cb Mon Sep 17 00:00:00 2001 From: Kurt Date: Fri, 25 Aug 2017 18:57:17 -0700 Subject: [PATCH] Add gen2 iv reroll for shiny #1419 --- PKHeX.Core/PKM/PKM.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX.Core/PKM/PKM.cs b/PKHeX.Core/PKM/PKM.cs index 79d932479..d720ff21b 100644 --- a/PKHeX.Core/PKM/PKM.cs +++ b/PKHeX.Core/PKM/PKM.cs @@ -790,7 +790,7 @@ public void SetShinyIVs() /// public void SetShinyPID() { - if (Format < 2) + if (Format <= 2) SetShinyIVs(); do PID = PKX.GetRandomPID(Species, Gender, Version, Nature, AltForm, PID); while (!IsShiny);