diff --git a/PKHeX.Core/Editing/ShowdownSet.cs b/PKHeX.Core/Editing/ShowdownSet.cs index 230ceec64..1fa0d2310 100644 --- a/PKHeX.Core/Editing/ShowdownSet.cs +++ b/PKHeX.Core/Editing/ShowdownSet.cs @@ -473,7 +473,7 @@ private void ParseSpeciesNickname(string line) string n1, n2; if (index > 1) // correct format { - n1 = line.Substring(0, index - 1); + n1 = line.Substring(0, index).Trim(); n2 = line.Substring(index).Trim(); n2 = ReplaceAll(n2, string.Empty, "[", "]", "(", ")"); // Trim out excess data }