Fix multiplayer lockup
This commit is contained in:
parent
17f9605e8f
commit
bc3fc13955
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ module.exports = function(currentUser, id = 0, sendImmidiate = true) {
|
||||||
playCount: User.playCount,
|
playCount: User.playCount,
|
||||||
totalScore: User.totalScore,
|
totalScore: User.totalScore,
|
||||||
rank: User.rank,
|
rank: User.rank,
|
||||||
performance: (currentUser.rankingMode == 0 ? User.pp : 0)
|
performance: (User.rankingMode == 0 ? User.pp : 0)
|
||||||
};
|
};
|
||||||
|
|
||||||
osuPacketWriter.HandleOsuUpdate(UserStatusObject);
|
osuPacketWriter.HandleOsuUpdate(UserStatusObject);
|
||||||
|
|
Loading…
Reference in a new issue