mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-06 05:27:14 -05:00
Fetch jp egg name on gen3 species0
#1257 causes a pkm flagged as egg to return the japanese egg name for gen3 only
This commit is contained in:
parent
966792713c
commit
1904700c1e
|
|
@ -209,6 +209,9 @@ public static string GetSpeciesName(int species, int lang)
|
|||
/// <returns>Generation specific default species name</returns>
|
||||
public static string GetSpeciesNameGeneration(int species, int lang, int generation)
|
||||
{
|
||||
if (generation == 3 && species == 0)
|
||||
return "タマゴ";
|
||||
|
||||
string nick = GetSpeciesName(species, lang);
|
||||
|
||||
if (generation < 5 && (generation != 4 || species != 0)) // All caps GenIV and previous, except GenIV eggs.
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user