From c5bc8b3c79e318c2df0e0346b9899ec5adb0f9a5 Mon Sep 17 00:00:00 2001 From: cmezh Date: Thu, 11 Aug 2016 03:31:06 +0700 Subject: [PATCH] Typo fix: show new catch rate after berry throw. --- pokemongo_bot/cell_workers/pokemon_catch_worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pokemongo_bot/cell_workers/pokemon_catch_worker.py b/pokemongo_bot/cell_workers/pokemon_catch_worker.py index 345fcabc7e..3b2092e535 100644 --- a/pokemongo_bot/cell_workers/pokemon_catch_worker.py +++ b/pokemongo_bot/cell_workers/pokemon_catch_worker.py @@ -251,7 +251,7 @@ def _use_berry(self, berry_id, berry_count, encounter_id, catch_rate_by_ball, cu data={ 'berry_name': self.item_list[str(berry_id)], 'ball_name': self.item_list[str(current_ball)], - 'new_catch_rate': self._pct(catch_rate_by_ball[current_ball]) + 'new_catch_rate': self._pct(new_catch_rate_by_ball[current_ball]) } )