diff --git a/pokemongo_bot/cell_workers/pokemon_catch_worker.py b/pokemongo_bot/cell_workers/pokemon_catch_worker.py index 3211ab7b73..994dc6caec 100644 --- a/pokemongo_bot/cell_workers/pokemon_catch_worker.py +++ b/pokemongo_bot/cell_workers/pokemon_catch_worker.py @@ -105,6 +105,16 @@ def work(self, response_dict=None): # skip ignored pokemon if not self._should_catch_pokemon(pokemon): + self.emit_event( + 'pokemon_appeared', + formatted='Skip ignored {pokemon}! [CP {cp}] [Potential {iv}] [A/D/S {iv_display}]', + data={ + 'pokemon': pokemon.name, + 'cp': pokemon.cp, + 'iv': pokemon.iv, + 'iv_display': pokemon.iv_display, + } + ) return WorkerResult.SUCCESS is_vip = self._is_vip_pokemon(pokemon)