Skip to content
This repository has been archived by the owner on Jul 30, 2020. It is now read-only.

Commit

Permalink
Attempt fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Lord-Haji authored Mar 28, 2017
1 parent 104547f commit 5cd3c4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PoGo.NecroBot.Logic/Tasks/CatchPokemonTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 5cd3c4e

Please sign in to comment.