From 88b0b2e2726e25a1b8709a88aa2ecc6dced6cf95 Mon Sep 17 00:00:00 2001 From: DeXtroTip Date: Fri, 26 Aug 2016 01:27:11 +0100 Subject: [PATCH] Fixed first egg incubate wrong stats --- pokemongo_bot/cell_workers/incubate_eggs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pokemongo_bot/cell_workers/incubate_eggs.py b/pokemongo_bot/cell_workers/incubate_eggs.py index 7b705ceb8c..c794b378be 100644 --- a/pokemongo_bot/cell_workers/incubate_eggs.py +++ b/pokemongo_bot/cell_workers/incubate_eggs.py @@ -135,8 +135,8 @@ def _check_inventory(self, lookup_ids=[]): incubators = [incubators] for incubator in incubators: if 'pokemon_id' in incubator: - start_km = incubator.get('start_km_walked', 9001) - km_walked = incubator.get('target_km_walked', 9001) + start_km = incubator.get('start_km_walked', 0) + km_walked = incubator.get('target_km_walked', 0) temp_used_incubators.append({ "id": incubator.get('id', -1), "km": km_walked,