mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
Update EncounterStatic7.cs
This commit is contained in:
parent
079ceb2752
commit
81e98b5549
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue