Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] use_lucky_egg #1774

Merged
merged 1 commit into from
Jul 30, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -54,7 +54,7 @@ def _should_run(self):
return False

# Evolve all is used - Don't run after the first tick or if the config flag is false
if self.bot.tick_count is not 0 or not self.bot.config.use_lucky_egg:
if self.bot.tick_count is not 1 or not self.bot.config.use_lucky_egg:
return True

lucky_egg_count = self.bot.item_inventory_count(Item.ITEM_LUCKY_EGG.value)
Expand Down