Fix incorrect pokemon encounter message
Fix incorrect pokemon encounter message
diff --git a/PokemonGo/RocketAPI/Window/MainForm.cs b/PokemonGo/RocketAPI/Window/MainForm.cs
index 8e3206b..a719f8f 100644
--- a/PokemonGo/RocketAPI/Window/MainForm.cs
+++ b/PokemonGo/RocketAPI/Window/MainForm.cs
@@ -461,7 +461,7 @@ namespace PokemonGo.RocketAPI.Window
var pokemonCP = encounterPokemonResponse?.WildPokemon?.PokemonData?.Cp;
var pokemonIV = Math.Round((double)encounterPokemonResponse?.WildPokemon?.PokemonData.GetIV() * 100);
CatchPokemonResponse caughtPokemonResponse;
- ColoredConsoleWrite(Color.Green, $"Encounter a {pokemonName} with {pokemon} CP and {pokemonIV}% IV");
+ ColoredConsoleWrite(Color.Green, $"Encounter a {pokemonName} with {pokemonCP} CP and {pokemonIV}% IV");
do
{
if (ClientSettings.RazzBerryMode == "cp")
You may download the files in Public Git.