Skip to content

Commit

Permalink
Merge pull request #6093 from davidakachaos/fix_mistakes
Browse files Browse the repository at this point in the history
Fixing missed events
  • Loading branch information
MerlionRock authored Jul 18, 2017
2 parents 6b10582 + 38d488d commit 7b95e6a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pokemongo_bot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -372,21 +372,23 @@ def _register_events(self):
'moving_to_fort',
parameters=(
'fort_name',
'target_type',
'distance'
)
)
self.event_manager.register_event(
'moving_to_lured_fort',
parameters=(
'fort_name',
'target_type',
'distance',
'lure_distance'
)
)
self.event_manager.register_event(
'spun_pokestop',
parameters=(
'pokestop', 'exp', 'items'
'pokestop', 'exp', 'items', 'stop_kind', 'spin_amount_now'
)
)
self.event_manager.register_event(
Expand Down

0 comments on commit 7b95e6a

Please sign in to comment.