From 5cd3c4e6ac5fd3f47d2dd6f149fee762ac2e3646 Mon Sep 17 00:00:00 2001 From: Executive Dronpes Date: Tue, 28 Mar 2017 13:11:33 +0530 Subject: [PATCH] Attempt fix --- PoGo.NecroBot.Logic/Tasks/CatchPokemonTask.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PoGo.NecroBot.Logic/Tasks/CatchPokemonTask.cs b/PoGo.NecroBot.Logic/Tasks/CatchPokemonTask.cs index 4bb72db67..8c810c646 100644 --- a/PoGo.NecroBot.Logic/Tasks/CatchPokemonTask.cs +++ b/PoGo.NecroBot.Logic/Tasks/CatchPokemonTask.cs @@ -429,7 +429,7 @@ encounter is EncounterResponse || encounter is IncenseEncounterResponse if (caughtPokemonResponse.Status == CatchPokemonResponse.Types.CatchStatus.CatchSuccess) { - evt.Shiny = (await session.Inventory.GetPokemons().ConfigureAwait(false)).First(x => x.Id == caughtPokemonResponse.CapturedPokemonId).PokemonDisplay.Shiny(); + evt.Shiny = (await session.Inventory.GetPokemons().ConfigureAwait(false)).First(x => x.Id == caughtPokemonResponse.CapturedPokemonId).PokemonDisplay.Shiny; if (session.LogicSettings.AutoFavoriteShinyOnCatch) { if (evt.Shiny)