mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-21 19:43:06 +00:00
Update EncounterSlot7GO.cs
This commit is contained in:
parent
5955319883
commit
cccce007b8
1 changed files with 4 additions and 2 deletions
|
@ -125,8 +125,10 @@ public sealed record EncounterSlot7GO(int StartDate, int EndDate, ushort Species
|
|||
// continue;
|
||||
if (!Shiny.IsValid(pk))
|
||||
return false;
|
||||
//if (slot.Gender != Gender.Random && (int) slot.Gender != pk.Gender)
|
||||
// continue;
|
||||
|
||||
// At least one encounter is a single gender (Pikachu 24-11-04 yay...) so check.
|
||||
if (Gender != Gender.Random && (int)Gender != pk.Gender)
|
||||
return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue