Skip to content

Commit

Permalink
Increase default max pp to account for pp-increasing items
Browse files Browse the repository at this point in the history
  • Loading branch information
hsahovic committed Jun 17, 2023
1 parent d6b07d8 commit 5c09dde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/poke_env/environment/move.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ def max_pp(self) -> int:
:return: The move's max pp.
:rtype: int
"""
return self.entry["pp"]
return self.entry["pp"] * 8 / 5

@property
def n_hit(self) -> Tuple:
Expand Down

0 comments on commit 5c09dde

Please sign in to comment.