From 4703a3d36417a483f1f6a45d2dad7e94d1488d64 Mon Sep 17 00:00:00 2001 From: Kurt Date: Sat, 11 May 2019 17:03:22 -0700 Subject: [PATCH] Fix incorrect method call IVs for regular trade gifts can have random IVs; only VC-era have purely fixed IVs. Closes #2300 --- PKHeX.Core/Legality/Encounters/EncounterTrade.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKHeX.Core/Legality/Encounters/EncounterTrade.cs b/PKHeX.Core/Legality/Encounters/EncounterTrade.cs index c905ecd1e..840135d53 100644 --- a/PKHeX.Core/Legality/Encounters/EncounterTrade.cs +++ b/PKHeX.Core/Legality/Encounters/EncounterTrade.cs @@ -232,7 +232,7 @@ namespace PKHeX.Core { if (IVs != null) { - if (!Legal.GetIsFixedIVSequenceValidNoRand(IVs, pkm)) + if (!Legal.GetIsFixedIVSequenceValid(IVs, pkm)) return false; }