Skip to content

Commit

Permalink
small fix to evolve_cp_min
Browse files Browse the repository at this point in the history
  • Loading branch information
douglascamata committed Jul 28, 2016
1 parent 8852f62 commit 0a9444b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pokemongo_bot/cell_workers/evolve_all_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def _sort_by_cp_iv(self, inventory_items):
pokemon['cp'],
self._compute_iv(pokemon)
]
if pokemon['cp'] > self.config.cp_min:
if pokemon['cp'] > self.config.evolve_cp_min:
pokemons1.append(v)
else:
pokemons2.append(v)
Expand Down

1 comment on commit 0a9444b

@xc-mezcal
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@douglascamata Well plz add evolve_cp_min to config.json.pokemon.example :D

Please sign in to comment.