You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bot pops lucky egg before starting to evolve pokemon.
Actual Behavior
Bot doesn't pop lucky egg before starting to evolve pokemon.
Steps to Reproduce
Set...
"evolve_all": "NONE",
"use_lucky_egg": false,
Run bot
Other Information
dev branch
Fix:
evolve_all_worker.py:
# Evolve all is used - Don't run after the first tick or if the config flag is falseifself.bot.tick_countisnot1ornotself.bot.config.use_lucky_egg:
returnTrue
tick_count is increased by 1 before running each worker, therefore the first tick is 1, not 0.
The text was updated successfully, but these errors were encountered:
Expected Behavior
Bot pops lucky egg before starting to evolve pokemon.
Actual Behavior
Bot doesn't pop lucky egg before starting to evolve pokemon.
Steps to Reproduce
Set...
"evolve_all": "NONE",
"use_lucky_egg": false,
Run bot
Other Information
dev branch
Fix:
evolve_all_worker.py:
tick_count is increased by 1 before running each worker, therefore the first tick is 1, not 0.
The text was updated successfully, but these errors were encountered: