Skip to content

Commit

Permalink
Typo fix: show new catch rate after berry throw. (#3521)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmezh authored and solderzzc committed Aug 10, 2016
1 parent 9ae1b78 commit 1183b93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pokemongo_bot/cell_workers/pokemon_catch_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -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])
}
)

Expand Down

0 comments on commit 1183b93

Please sign in to comment.