Fix multiplayer lockup

This commit is contained in:
Holly Stubbs 2021-09-22 19:13:32 +01:00
parent 17f9605e8f
commit bc3fc13955

View file

@ -25,7 +25,7 @@ module.exports = function(currentUser, id = 0, sendImmidiate = true) {
playCount: User.playCount,
totalScore: User.totalScore,
rank: User.rank,
performance: (currentUser.rankingMode == 0 ? User.pp : 0)
performance: (User.rankingMode == 0 ? User.pp : 0)
};
osuPacketWriter.HandleOsuUpdate(UserStatusObject);