Update EncounterGenerator9X.cs

Nobody cares about SW/SH for a month eh
This commit is contained in:
Kurt 2025-11-18 00:25:02 -06:00
parent 148d71e7ea
commit 84e5382134

View File

@ -29,6 +29,7 @@ public IEnumerable<IEncounterable> GetEncounters(PKM pk, LegalInfo info)
ZA => EncounterGenerator9a.Instance.GetEncounters(pk, chain, info),
SL or VL => EncounterGenerator9.Instance.GetEncounters(pk, chain, info),
0 when pk.IsEgg => EncounterGenerator9.Instance.GetEncounters(pk, chain, info), // 0 for eggs
SW or SH => EncounterGenerator8X.Instance.GetEncounters(pk, chain, info), // Backwards transfers to SW/SH that are recognized as being from Gen9
_ => [],
};
}