mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
Defer formargument for raids
Closes #2693 Account for runerigus too, if they ever have a den for it ;) Co-Authored-By: crzyc <crzyc@users.noreply.github.com>
This commit is contained in:
parent
239b2f4b52
commit
cb5d8186fd
1 changed files with 4 additions and 0 deletions
|
@ -50,6 +50,10 @@ namespace PKHeX.Core
|
|||
return true;
|
||||
if (pkm is IGigantamax g && g.CanGigantamax != CanGigantamax)
|
||||
return true;
|
||||
if (Species == (int)Core.Species.Alcremie && pkm is IFormArgument a && a.FormArgument != 0)
|
||||
return true;
|
||||
if (Species == (int)Core.Species.Runerigus && pkm is IFormArgument r && r.FormArgument != 0)
|
||||
return true;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue