Skip to content

Commit

Permalink
Added MaxPotion inventory count to summary. (#3015)
Browse files Browse the repository at this point in the history
Short Description: 
The Max Potion count was missing from the inventory summary.

Was #2456
  • Loading branch information
JaapMoolenaar authored and solderzzc committed Aug 8, 2016
1 parent 229381c commit 1a18b9f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pokemongo_bot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -747,7 +747,8 @@ def _print_character_info(self):
self.logger.info(
'Potion: ' + str(items_stock[101]) +
' | SuperPotion: ' + str(items_stock[102]) +
' | HyperPotion: ' + str(items_stock[103]))
' | HyperPotion: ' + str(items_stock[103]) +
' | MaxPotion: ' + str(items_stock[104]))

self.logger.info(
'Incense: ' + str(items_stock[401]) +
Expand Down

0 comments on commit 1a18b9f

Please sign in to comment.