Skip to content

Commit

Permalink
Merge pull request #739 from OverlordQ/master
Browse files Browse the repository at this point in the history
Fix candies count on catch
  • Loading branch information
Yamashi authored Jul 27, 2016
2 parents ab0deb2 + 3795562 commit c65415e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PoGo.NecroBot.CLI/ConsoleEventListener.cs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public void HandleEvent(PokemonCaptureEvent evt, Context ctx)
: ctx.Translations.GetTranslation(TranslationString.CatchStatus, evt.Status);

var familyCandies = evt.FamilyCandies > 0
? ctx.Translations.GetTranslation(TranslationString.Candies)
? ctx.Translations.GetTranslation(TranslationString.Candies, evt.FamilyCandies)
: "";

Logger.Write(ctx.Translations.GetTranslation(TranslationString.EventPokemonCapture, catchStatus, catchType, evt.Id,
Expand Down

0 comments on commit c65415e

Please sign in to comment.