Skip to content

Commit

Permalink
Merge pull request NecronomiconCoding#27 from NecronomiconCoding/master
Browse files Browse the repository at this point in the history
Merging in latest
  • Loading branch information
BornSupercharged authored Aug 1, 2016
2 parents f0fbd45 + b7f035e commit 6ebbcbc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PoGo.NecroBot.Logic/Inventory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public async Task<IEnumerable<PokemonData>> 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)
Expand Down
2 changes: 1 addition & 1 deletion PoGo.NecroBot.Logic/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]

0 comments on commit 6ebbcbc

Please sign in to comment.