From 9ffac4382a30a9a67e4e5c12864aef4304a7197f Mon Sep 17 00:00:00 2001 From: Kurt Date: Fri, 7 Feb 2020 17:42:28 -0800 Subject: [PATCH] Replace gender symbols for nidoran with -M/F --- PKHeX.Core/Editing/ShowdownSet.cs | 4 ++++ 1 file changed, 4 insertions(+) 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)