Skip to content

Commit

Permalink
This is just a temp fix, The one added the configure param need make …
Browse files Browse the repository at this point in the history
…sure it's really work.
  • Loading branch information
solderzzc committed Aug 2, 2016
1 parent cd21fdd commit 5927c3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pokemongo_bot/cell_workers/move_to_fort.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ class MoveToFort(BaseTask):

def initialize(self):
self.lure_distance = 0
self.lure_attraction = self.config.get("lure_attraction", True)
self.lure_max_distance = self.config.get("lure_max_distance", 2000)
self.lure_attraction = True #self.config.get("lure_attraction", True)
self.lure_max_distance = 2000 #self.config.get("lure_max_distance", 2000)

def should_run(self):
has_space_for_loot = self.bot.has_space_for_loot()
Expand Down

2 comments on commit 5927c3b

@wjrus
Copy link

@wjrus wjrus commented on 5927c3b Aug 2, 2016

Choose a reason for hiding this comment

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

It really doesn't work where I am, move to lure ends up conflicting with each other and providing a generally poor user experience. This change made me edit move_to_fort.py to set it to false. Would be nice to not have to modify the source files to change the value, though, so hopefully a change to pay attention to the configuration file will be coming along.

@hannsch
Copy link

@hannsch hannsch commented on 5927c3b Aug 7, 2016

Choose a reason for hiding this comment

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

Still not fixed! I had to delete it myself.

Please sign in to comment.