From 3621105e851af4705be73ab22ee71544ba499245 Mon Sep 17 00:00:00 2001 From: Kurt Date: Fri, 4 Aug 2017 09:21:38 -0700 Subject: [PATCH] Change spiky pichu to pokewalker pid method #1381 now that pokewalker pid method is finished, pichu is noted to be generated with it. --- PKHeX.Core/Legality/RNG/MethodFinder.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/PKHeX.Core/Legality/RNG/MethodFinder.cs b/PKHeX.Core/Legality/RNG/MethodFinder.cs index 28c78e18d..0ab8e302f 100644 --- a/PKHeX.Core/Legality/RNG/MethodFinder.cs +++ b/PKHeX.Core/Legality/RNG/MethodFinder.cs @@ -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: