-
Notifications
You must be signed in to change notification settings - Fork 53
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
Improve walking #42
Improve walking #42
Conversation
9745a9b
to
c77feb6
Compare
Possibly unrelated to the PR, but while catching worked fine my bot account was softbanned as soon as it went to a pokestop (or, at least, reported being softbanned) EDIT: doesn't seem the account was soft-banned due to catching pokemon on another run, so I think this PR causes the soft-ban message to show unnecessarily. EDIT2: Tried PR again, worked at one pokestop then soft-ban warning |
a89f404
to
211786e
Compare
@MaxLeiter I had that issue too until I noticed that @Gary-BOT is merging from a branch on this repo, not their own. Double check that. Anyways, I tested this with Gary for a good 30 minutes or so working out some interesting edge cases. LGTM |
Just adding some information from slack. Seems like a movement speed of 30 == softban. |
def work_on_cell(self, map_cells, position, include_fort_on_path): | ||
self._remove_ignored_pokemon(map_cells) | ||
|
||
if (self.config.mode == "all" or self.config.mode == "poke"): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could we make this and the lines below on if statement? Or is there a reason to not do so?
211786e
to
6ae10b3
Compare
🎉 |
Short Description:
Walking would travel to the ends of the earths in some cases, this was unnecessary.
Changes:
@OpenPoGo/maintainers