diff --git a/PKX/f1-Main.cs b/PKX/f1-Main.cs index 357849ce3..8e828565f 100644 --- a/PKX/f1-Main.cs +++ b/PKX/f1-Main.cs @@ -1221,7 +1221,7 @@ public void setCountrySubRegion(object sender, string type) CB.DataSource = Util.getCBList(type, cl); - if (index > 0 && index <= CB.Items.Count && init) + if (index > 0 && index < CB.Items.Count && init) CB.SelectedIndex = index; } public void setForms(int species, ComboBox cb) @@ -4692,4 +4692,4 @@ private void pbBoxSlot_DragEnter(object sender, DragEventArgs e) private int pkm_from_slot = -1; #endregion } -} \ No newline at end of file +}