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) 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