diff --git a/PKHeX/PKM/ShowdownSet.cs b/PKHeX/PKM/ShowdownSet.cs index aff18a58c..e5b4fefbc 100644 --- a/PKHeX/PKM/ShowdownSet.cs +++ b/PKHeX/PKM/ShowdownSet.cs @@ -145,12 +145,8 @@ public string getText() // First Line: Name, Nickname, Gender, Item string specForm = species[Species]; if (!string.IsNullOrWhiteSpace(Form)) - { - if (Form.Contains("Mega")) - specForm += Form.Replace("Mega ", "Mega-"); - else - specForm += "-" + Form; - } + specForm += "-" + Form.Replace("Mega ", "Mega-"); + string result = Nickname != null && species[Species] != Nickname ? $"{Nickname} ({specForm})" : $"{specForm}"; if (!string.IsNullOrEmpty(Gender)) result += $" ({Gender})";