Skip to content

Commit

Permalink
Merge pull request NecronomiconCoding#1993 from streppelchen/master
Browse files Browse the repository at this point in the history
issue #1966 fix incorrect log
  • Loading branch information
BornSupercharged authored Aug 2, 2016
2 parents 61aba2d + ff2fb79 commit 405b765
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PoGo.NecroBot.Logic/Tasks/EvolvePokemonTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public static async Task Execute(ISession session, CancellationToken cancellatio
session.EventDispatcher.Send(new NoticeEvent()
{
Message = session.Translation.GetTranslation(TranslationString.WaitingForMorePokemonToEvolve,
pokemonToEvolve.Count, deltaCount, totalPokemon.Count(), needPokemonToStartEvolve, session.LogicSettings.EvolveKeptPokemonsAtStorageUsagePercentage/100.0f)
pokemonToEvolve.Count, deltaCount, totalPokemon.Count(), needPokemonToStartEvolve, session.LogicSettings.EvolveKeptPokemonsAtStorageUsagePercentage)
});

return;
Expand Down

0 comments on commit 405b765

Please sign in to comment.