From 864c5bfd659aa1fb1825b6904c450d63d6475df5 Mon Sep 17 00:00:00 2001 From: Kurt Date: Thu, 26 Nov 2015 19:14:41 -0800 Subject: [PATCH] IVs and Fateful Encounter --- Misc/WC6.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Misc/WC6.cs b/Misc/WC6.cs index 6c2c201a7..92e91966b 100644 --- a/Misc/WC6.cs +++ b/Misc/WC6.cs @@ -261,8 +261,8 @@ public PK6 convertToPK6(SAV6 SAV) RIB4_3 = RIB0_2, // National Champ Ribbon RIB4_4 = RIB1_0, // World Champ Ribbon - // Memories OT_Friendship = PKX.getBaseFriendship(Species), + FatefulEncounter = true, }; if (pk.CurrentHandler == 0) // OT { @@ -301,7 +301,7 @@ public PK6 convertToPK6(SAV6 SAV) finalIVs[i] = IVs[i]; break; } // more than 3 definable IVs and not enough flawless IVs - } while (IVs.Count(r => r > 31) < 3 && finalIVs.Count(r => r == 31) < 3); + } while (IVs.Count(r => r > 31) > 3 && finalIVs.Count(r => r == 31) < 3); pk.IVs = finalIVs; int av = 0;