mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-11 22:29:52 -05:00
Skip eggs for gg (like cxd)
This commit is contained in:
parent
9d2be1da9f
commit
101149eb2e
|
|
@ -129,7 +129,7 @@ private static IEnumerable<IEncounterable> GetPossible(PKM pk, IReadOnlyCollecti
|
|||
{
|
||||
// generate possible eggs
|
||||
var eggs = GetEggs(pk, needs, version);
|
||||
if (!GameVersion.CXD.Contains(version))
|
||||
if (!GameVersion.CXD.Contains(version) && !GameVersion.GG.Contains(version))
|
||||
{
|
||||
foreach (var egg in eggs)
|
||||
yield return egg;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user