mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-09 04:24:36 -05:00
Add bypass for gen4 unown
meh
This commit is contained in:
parent
2d3203fc1a
commit
133cc22f50
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user