mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-08-23 23:24:14 -05:00
Replace gender symbols for nidoran with -M/F
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user