Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
rawgni authored and solderzzc committed Sep 2, 2016
1 parent 722fe3b commit 0bb501e
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions pokemongo_bot/cell_workers/incubate_eggs.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,14 +176,10 @@ def _check_inventory(self, lookup_ids=[]):
continue
if "player_stats" in inv_data:
self.km_walked = inv_data.get("player_stats", {}).get("km_walked", 0)
if temp_used_incubators:
self.used_incubators = temp_used_incubators
if temp_ready_breakable_incubators:
self.ready_breakable_incubators = temp_ready_breakable_incubators
if temp_ready_infinite_incubators:
self.ready_infinite_incubators = temp_ready_infinite_incubators
if temp_eggs:
self.eggs = temp_eggs
self.used_incubators = temp_used_incubators
self.ready_breakable_incubators = temp_ready_breakable_incubators
self.ready_infinite_incubators = temp_ready_infinite_incubators
self.eggs = temp_eggs
return matched_pokemon

def _hatch_eggs(self):
Expand Down

0 comments on commit 0bb501e

Please sign in to comment.