Skip to content

Commit

Permalink
whoever wrote this clearly did not read osu code
Browse files Browse the repository at this point in the history
  • Loading branch information
7ez committed May 1, 2024
1 parent 02c4820 commit 1dd5ec8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion constants/serverPackets.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def user_stats(userID):
(userToken.playcount, dataTypes.UINT32),
(userToken.totalScore, dataTypes.UINT64),
(userToken.gameRank, dataTypes.UINT32),
(userToken.pp if 65535 >= userToken.pp > 0 else 0, dataTypes.UINT16),
(userToken.pp if 32767 >= userToken.pp > 0 else 0, dataTypes.SINT16),
),
)

Expand Down

0 comments on commit 1dd5ec8

Please sign in to comment.