Add bypass for gen4 unown

meh
This commit is contained in:
Kurt 2017-12-02 19:54:50 -08:00
parent 2d3203fc1a
commit 133cc22f50

View File

@ -296,7 +296,7 @@ private static IEnumerable<IEncounterable> GenerateRawEncounters4(PKM pkm, Legal
foreach (var z in GetValidWildEncounters(pkm))
{
var frame = slots.FirstOrDefault(s => s.IsSlotCompatibile(z, pkm));
if (frame != null)
if (frame != null || pkm.Species == 201) // Unown -- don't really care to figure this out
yield return z;
else
deferred.Add(z);