mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
Fix contains indexing incorrectly
blame apr 17 2017 !
a5b1d72f06 (diff-53c2e8acc19c5af65034cf0460ba82ebc7dc00ba61eb142ef4aa2c0cbc1f7cffR2918)
This commit is contained in:
parent
0ab3493335
commit
99fe3b59b4
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ namespace PKHeX
|
|||
previousspecies = 33;
|
||||
return;
|
||||
|
||||
case (int)Species.Exeggutor when moves.Contains(23) && moves.Any(m => G1Exeggcute_IncompatibleMoves.Contains(moves[m])):
|
||||
case (int)Species.Exeggutor when moves.Contains(23) && moves.Any(m => G1Exeggcute_IncompatibleMoves.Contains(m)):
|
||||
// Exeggutor learns Stomp at level 28
|
||||
// Exeggcute learns Stun Spore at 32, PoisonPowder at 37 and Sleep Powder at 48
|
||||
incompatible_current = new[] { 23 };
|
||||
|
|
Loading…
Reference in a new issue