mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 05:48:44 +00:00
Allow Ninjask moves on Gen 4 Sport Ball Shedinja
This commit is contained in:
parent
d5a79079c0
commit
a9896022ed
1 changed files with 1 additions and 1 deletions
|
@ -578,7 +578,7 @@ namespace PKHeX.Core
|
|||
{
|
||||
if (evos[gen].Count != 2)
|
||||
continue; // Was not evolved in this generation
|
||||
if (gen == 4 && pkm.Ball != 4)
|
||||
if (gen == 4 && pkm.Ball != 4 && !(pkm.Ball == (int)Ball.Sport && pkm.HGSS))
|
||||
continue; // Was definitively evolved in Gen3
|
||||
|
||||
var maxLevel = pkm.CurrentLevel;
|
||||
|
|
Loading…
Add table
Reference in a new issue