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

Revert "Stops bot after a set level limit" #4658

Merged
merged 1 commit into from
Aug 24, 2016
Merged
Show file tree
Hide file tree
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
6 changes: 1 addition & 5 deletions configs/config.json.cluster.example
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,7 @@
}
},
{
"type": "LevelUp",
"config": {
"collect_reward": true,
"level_limit": -1
}
"type": "CollectLevelUpReward"
},
{
"type": "IncubateEggs",
Expand Down
6 changes: 1 addition & 5 deletions configs/config.json.example
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,7 @@
}
},
{
"type": "LevelUp",
"config": {
"collect_reward": true,
"level_limit": -1
}
"type": "CollectLevelUpReward"
},
{
"type": "IncubateEggs",
Expand Down
6 changes: 1 addition & 5 deletions configs/config.json.map.example
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,7 @@
}
},
{
"type": "LevelUp",
"config": {
"collect_reward": true,
"level_limit": -1
}
"type": "CollectLevelUpReward"
},
{
"type": "IncubateEggs",
Expand Down
6 changes: 1 addition & 5 deletions configs/config.json.optimizer.example
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,7 @@
}
},
{
"type": "LevelUp",
"config": {
"collect_reward": true,
"level_limit": -1
}
"type": "CollectLevelUpReward"
},
{
"type": "IncubateEggs",
Expand Down
6 changes: 1 addition & 5 deletions configs/config.json.path.example
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,7 @@
}
},
{
"type": "LevelUp",
"config": {
"collect_reward": true,
"level_limit": -1
}
"type": "CollectLevelUpReward"
},
{
"type": "IncubateEggs",
Expand Down
6 changes: 1 addition & 5 deletions configs/config.json.pokemon.example
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,7 @@
}
},
{
"type": "LevelUp",
"config": {
"collect_reward": true,
"level_limit": -1
}
"type": "CollectLevelUpReward"
},
{
"type": "IncubateEggs",
Expand Down
2 changes: 1 addition & 1 deletion pokemongo_bot/cell_workers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from handle_soft_ban import HandleSoftBan
from follow_path import FollowPath
from follow_spiral import FollowSpiral
from level_up import LevelUp
from collect_level_up_reward import CollectLevelUpReward
from follow_cluster import FollowCluster
from sleep_schedule import SleepSchedule
from update_live_stats import UpdateLiveStats
Expand Down
92 changes: 0 additions & 92 deletions pokemongo_bot/cell_workers/level_up.py

This file was deleted.