Update BallVerifier.cs

This commit is contained in:
sora10pls
2021-09-30 20:12:54 -04:00
parent 9ec879bd99
commit c9fed1ce70

View File

@@ -356,6 +356,8 @@ private static bool IsGalarCatchAndBreed(int species)
// Foreign Captures
if (species is >= (int)Species.Treecko and <= (int)Species.Swampert) // Dynamax Adventures
return true;
if (species is >= (int)Species.Rowlet and <= (int)Species.Primarina) // Distribution Raids
return true;
return false;
}