diff --git a/PKHeX.Core/Editing/ShowdownSet.cs b/PKHeX.Core/Editing/ShowdownSet.cs index 9263ecb8e..bcbef5f67 100644 --- a/PKHeX.Core/Editing/ShowdownSet.cs +++ b/PKHeX.Core/Editing/ShowdownSet.cs @@ -618,9 +618,12 @@ private static string ConvertFormToShowdown(string form, int spec) case (int)Core.Species.Furfrou: case (int)Core.Species.Greninja: case (int)Core.Species.Rockruff: + return string.Empty; + case (int)Core.Species.Polteageist: case (int)Core.Species.Sinistea: - return string.Empty; + return form == "Antique" ? form : string.Empty; + default: if (Legal.Totem_USUM.Contains(spec) && form == "Large") return Legal.Totem_Alolan.Contains(spec) && spec != (int)Core.Species.Mimikyu ? "Alola-Totem" : "Totem";