Update EncounterStatic7.cs

This commit is contained in:
Kurt 2020-09-05 12:33:00 -07:00
parent 079ceb2752
commit 81e98b5549

View file

@ -29,7 +29,7 @@ namespace PKHeX.Core
return Form == evo.Form || Legal.IsFormChangeable(Species, Form, pkm.Format);
}
public static EncounterStatic7 GetVC1(int species, int metLevel)
internal static EncounterStatic7 GetVC1(int species, int metLevel)
{
bool mew = species == (int)Core.Species.Mew;
return new EncounterStatic7
@ -46,7 +46,7 @@ namespace PKHeX.Core
};
}
public static EncounterStatic7 GetVC2(int species, int metLevel)
internal static EncounterStatic7 GetVC2(int species, int metLevel)
{
bool mew = species == (int)Core.Species.Mew;
bool fateful = mew || species == (int)Core.Species.Celebi;