Fix other wrong message
diff --git a/PokemonGo/RocketAPI/Window/MainForm.cs b/PokemonGo/RocketAPI/Window/MainForm.cs
index a719f8f..81fb192 100644
--- a/PokemonGo/RocketAPI/Window/MainForm.cs
+++ b/PokemonGo/RocketAPI/Window/MainForm.cs
@@ -733,7 +733,7 @@ namespace PokemonGo.RocketAPI.Window
foreach (var pokemon in unwantedPokemons)
{
if (pokemon.GetIV() >= keepPerfectPokemonLimit) continue;
- ColoredConsoleWrite(Color.White, $"Pokemon {pokemon.PokemonId} with {pokemon.Cp} CP has IV percent less than {keepPerfectPokemonLimit}%");
+ ColoredConsoleWrite(Color.White, $"Pokemon {pokemon.PokemonId} with {pokemon.Cp} CP has IV percent less than {keepPerfectPokemonLimit * 100}%");
if (pokemon.Favorite == 0)
{
You may download the files in Public Git.