Update PokeUi.cs
diff --git a/PokemonGo/RocketAPI/Window/PokeUi.cs b/PokemonGo/RocketAPI/Window/PokeUi.cs
index d46dd2d..b73f6d4 100644
--- a/PokemonGo/RocketAPI/Window/PokeUi.cs
+++ b/PokemonGo/RocketAPI/Window/PokeUi.cs
@@ -66,7 +66,7 @@ namespace PokemonGo.RocketAPI.Window
var imageList = new ImageList { ImageSize = new Size(50, 50) };
listView1.ShowItemToolTips = true;
-
+ int countpkmn = 1;
foreach (var pokemon in pokemons)
{
Bitmap pokemonImage = null;
@@ -97,9 +97,10 @@ namespace PokemonGo.RocketAPI.Window
this.listView1.Items.Add(listViewItem);
- this.Text = "PokeUi " + countpkmn + "/" + profile.Profile.PokeStorage;
+
countpkmn++;
}
+ this.Text = "PokeUi " + countpkmn + "/" + profile.Profile.PokeStorage;
EnabledButton(true);
You may download the files in Public Git.