Fix incorrect method call

IVs for regular trade gifts can have random IVs; only VC-era have purely
fixed IVs.
Closes #2300
This commit is contained in:
Kurt 2019-05-11 17:03:22 -07:00
parent 4b770e62d9
commit 4703a3d364

View file

@ -232,7 +232,7 @@ namespace PKHeX.Core
{ {
if (IVs != null) if (IVs != null)
{ {
if (!Legal.GetIsFixedIVSequenceValidNoRand(IVs, pkm)) if (!Legal.GetIsFixedIVSequenceValid(IVs, pkm))
return false; return false;
} }