diff --git a/PKHeX/PKM/ShowdownSet.cs b/PKHeX/PKM/ShowdownSet.cs index 2ab8cb64a..8fd9503b5 100644 --- a/PKHeX/PKM/ShowdownSet.cs +++ b/PKHeX/PKM/ShowdownSet.cs @@ -115,7 +115,7 @@ public ShowdownSet(string input = null) { string naturestr = line.Split(' ')[0].Trim(); int nature = Array.IndexOf(natures, naturestr); - if (Nature < 0) + if (nature < 0) InvalidLines.Add($"Unknown Nature: {naturestr}"); else Nature = nature;