Allow Ninjask moves on Gen 4 Sport Ball Shedinja

This commit is contained in:
Lusamine 2022-01-02 21:12:35 -06:00
parent d5a79079c0
commit a9896022ed

View file

@ -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;