From ff2fb790f916bb36fd0064189a00f4f577232235 Mon Sep 17 00:00:00 2001 From: Streppel Date: Tue, 2 Aug 2016 08:16:00 +0200 Subject: [PATCH] too early in the morning. this should fix the wrong logging. logic was fine --- PoGo.NecroBot.Logic/Tasks/EvolvePokemonTask.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PoGo.NecroBot.Logic/Tasks/EvolvePokemonTask.cs b/PoGo.NecroBot.Logic/Tasks/EvolvePokemonTask.cs index 09900a30f..e483cf643 100644 --- a/PoGo.NecroBot.Logic/Tasks/EvolvePokemonTask.cs +++ b/PoGo.NecroBot.Logic/Tasks/EvolvePokemonTask.cs @@ -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;