mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-13 23:50:25 -05:00
Replace gender symbols for nidoran with -M/F
This commit is contained in:
parent
1cd23e6587
commit
9ffac4382a
|
|
@ -322,6 +322,10 @@ private string GetStringFirstLine(string form)
|
|||
string specForm = Strings.Species[Species];
|
||||
if (form.Length != 0)
|
||||
specForm += $"-{form.Replace("Mega ", "Mega-")}";
|
||||
else if (Species == (int)Core.Species.NidoranM)
|
||||
specForm = specForm.Replace("♂", "-M");
|
||||
else if (Species == (int)Core.Species.NidoranF)
|
||||
specForm = specForm.Replace("♀", "-F");
|
||||
|
||||
string result = GetSpeciesNickname(specForm);
|
||||
if (Gender.Length != 0)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user