mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-27 14:12:14 -05:00
Fix galarian slowbro form compare
Really should be doing this with evo chain compares rather than edge cases, but whatever
This commit is contained in:
parent
4c7c6532bb
commit
c36c233e1d
|
|
@ -463,8 +463,10 @@ private static bool IsEvolvedFormChange(PKM pkm, int expected)
|
|||
return pkm.AltForm != orig; // bad compare?
|
||||
if ((int) Species.Darmanitan == pkm.Species)
|
||||
return pkm.AltForm == (expected == 1 ? 2 : 0);
|
||||
if ((int)Species.MrMime == pkm.Species)
|
||||
if ((int) Species.MrMime == pkm.Species)
|
||||
return pkm.AltForm == (expected == 0 ? 1 : 0);
|
||||
if ((int) Species.Slowbro == pkm.Species)
|
||||
return pkm.AltForm == (expected == 1 ? 2 : 0);
|
||||
if ((int) Species.Toxtricity == pkm.Species)
|
||||
return pkm.AltForm == EvolutionMethod.GetAmpLowKeyResult(pkm.Nature);
|
||||
if ((int) Species.Alcremie == pkm.Species)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user