diff --git a/PKHeX.Core/Editing/ShowdownSet.cs b/PKHeX.Core/Editing/ShowdownSet.cs index c361a5848..ce2cef85e 100644 --- a/PKHeX.Core/Editing/ShowdownSet.cs +++ b/PKHeX.Core/Editing/ShowdownSet.cs @@ -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)