Humanize number fix (#6283)

Co-authored-by: Jakub Kuczys <me@jacken.men>
This commit is contained in:
aikaterna
2024-01-03 16:13:26 -08:00
committed by GitHub
parent 47a267b38b
commit 531b4fe357
6 changed files with 26 additions and 5 deletions

View File

@@ -40,7 +40,7 @@ class RPSParser:
self.choice = None
MAX_ROLL: Final[int] = 2**64 - 1
MAX_ROLL: Final[int] = 2**63 - 1
@cog_i18n(_)