diff --git a/constants/serverPackets.py b/constants/serverPackets.py index cd25bf9..3ebd2ee 100644 --- a/constants/serverPackets.py +++ b/constants/serverPackets.py @@ -140,7 +140,7 @@ def userStats(userID, force = False): [userToken.playcount, dataTypes.UINT32], [userToken.totalScore, dataTypes.UINT64], [userToken.gameRank, dataTypes.UINT32], - [userToken.pp if userToken.pp <= 65535 else 0, dataTypes.UINT16] + [userToken.pp if userToken.pp <= 65535 and userToken.pp > 0 else 0, dataTypes.UINT16] ])