-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Telegram egg fix /stardust removal #5672
Conversation
@javajohnHub, thanks for your PR! By analyzing the annotation information on this pull request, we identified @DeXtroTip, @douglascamata and @kolinkorr839 to be potential reviewers |
Shows the daily catch limit stat… this will help people see that it is working correctly
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only one minor formatting issue I can see.
@@ -162,7 +167,7 @@ def work(self, response_dict=None): | |||
# log encounter | |||
self.emit_event( | |||
'pokemon_appeared', | |||
formatted='*A wild {} appeared!* (CP: {}) (NCP: {}) (Potential {}) (A/D/S {})'.format(pokemon.name, pokemon.cp, round(pokemon.cp_percent, 2), pokemon.iv, pokemon.iv_display), | |||
formatted='A wild {} appeared! (CP: {}) (IV: {}) (A/D/S {}) (NCP: {})'.format(pokemon.name, pokemon.cp, pokemon.iv, pokemon.iv_display, round(pokemon.cp_percent, 2),), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doesn't need all those parentheses. Change to
(CP: {} IV: {} A/D/S {} NCP: {})
Fix for egg output not displaying.
removed /stardust and just added the stat into /info
fix for #5667
Changed Pokemon caught output