Change spiky pichu to pokewalker pid method

#1381
now that pokewalker pid method is finished, pichu is noted to be
generated with it.
This commit is contained in:
Kurt 2017-08-04 09:21:38 -07:00
parent fe06309134
commit 3621105e85

View file

@ -615,9 +615,8 @@ namespace PKHeX.Core
switch (encounter)
{
case EncounterStatic s:
if (s == Encounters4.SpikyEaredPichu) // nonshiny forced nature, undocumented
return val == PIDType.None;
if (s.Location == 233 && s.Gift)
if (s == Encounters4.SpikyEaredPichu // nonshiny forced nature
|| s.Location == 233 && s.Gift) // Pokewalker
return val == PIDType.Pokewalker;
return s.Shiny == true ? val == PIDType.ChainShiny : val == PIDType.Method_1;
case EncounterSlot sl: