From 8a1ab348bbd654a4a67c296d019b617591993067 Mon Sep 17 00:00:00 2001 From: NecronomiconCoding Date: Mon, 1 Aug 2016 01:08:33 +0200 Subject: [PATCH 1/2] transfer holdup fixed thanks to 5andr0 --- PoGo.NecroBot.Logic/Inventory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PoGo.NecroBot.Logic/Inventory.cs b/PoGo.NecroBot.Logic/Inventory.cs index 61b80f85a..2bac36d42 100644 --- a/PoGo.NecroBot.Logic/Inventory.cs +++ b/PoGo.NecroBot.Logic/Inventory.cs @@ -109,7 +109,7 @@ public async Task> GetDuplicatePokemonToTransfer( var familyCandy = pokemonFamilies.Single(x => settings.FamilyId == x.FamilyId); var amountToSkip = GetPokemonTransferFilter(pokemon.Key).KeepMinDuplicatePokemon; - if (settings.CandyToEvolve > 0) + if (settings.CandyToEvolve > 0 && _logicSettings.PokemonsToEvolve.Contains(pokemon.Key)) { var amountPossible = (familyCandy.Candy_ - 1) / (settings.CandyToEvolve - 1); if (amountPossible > amountToSkip) From b7f035ecdbb7067e3891ff5c28a6f9d855d49511 Mon Sep 17 00:00:00 2001 From: NecronomiconCoding Date: Mon, 1 Aug 2016 01:29:39 +0200 Subject: [PATCH 2/2] push to 0.5.0 --- PoGo.NecroBot.Logic/Properties/AssemblyInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PoGo.NecroBot.Logic/Properties/AssemblyInfo.cs b/PoGo.NecroBot.Logic/Properties/AssemblyInfo.cs index d2882a086..b3fc6f0f2 100644 --- a/PoGo.NecroBot.Logic/Properties/AssemblyInfo.cs +++ b/PoGo.NecroBot.Logic/Properties/AssemblyInfo.cs @@ -39,5 +39,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("0.4.0")] +[assembly: AssemblyVersion("0.5.0")] [assembly: AssemblyFileVersion("1.0.0.0")] \ No newline at end of file