mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-18 00:13:10 +00:00
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:
parent
4b770e62d9
commit
4703a3d364
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue