diff --git a/PKX/f1-Main.cs b/PKX/f1-Main.cs index ed18b2e2f..0257bb0c6 100644 --- a/PKX/f1-Main.cs +++ b/PKX/f1-Main.cs @@ -2727,8 +2727,8 @@ private void setBoxNames() catch { CB_BoxSelect.Items.Clear(); - for (int i = 1; i < 31; i++) - CB_BoxSelect.Items.Add("Box " + i); + for (int i = 0; i < 31; i++) + CB_BoxSelect.Items.Add("Box " + (i+1)); } CB_BoxSelect.SelectedIndex = selectedbox; // restore selected box } diff --git a/SAV/SAV_Database.cs b/SAV/SAV_Database.cs index 387acdd55..0ff560ad7 100644 --- a/SAV/SAV_Database.cs +++ b/SAV/SAV_Database.cs @@ -209,7 +209,7 @@ private void clickSet(object sender, EventArgs e) // Refresh database view. L_Count.Text = String.Format(Counter, Results.Count); FillPKXBoxes(SCR_Box.Value); - Util.Alert("Added Pokémon from tabs to database", "Please refresh the search to ensure it shows up; it may be at the bottom of the results."); + Util.Alert("Added Pokémon from tabs to database.", "Please refresh the search to ensure it shows up; it may be at the bottom of the results."); } private void populateComboBoxes() {