2
0
Fork 0
mirror of https://github.com/kwsch/PKHeX synced 2024-12-18 08:23:12 +00:00

Fix incorrect method call

IVs for regular trade gifts can have random IVs; only VC-era have purely
fixed IVs.
Closes 
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 (!Legal.GetIsFixedIVSequenceValidNoRand(IVs, pkm))
if (!Legal.GetIsFixedIVSequenceValid(IVs, pkm))
return false;
}