steamutils 1.1.7 → 1.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/SteamClient.js +1 -0
- package/package.json +1 -1
package/SteamClient.js
CHANGED
@@ -655,6 +655,7 @@ function SteamClient({
|
|
655
655
|
const player = data?.[0];
|
656
656
|
if (player) {
|
657
657
|
player.prime = !!(player.ranking?.account_id || player.player_level || player.player_cur_xp)
|
658
|
+
player.steamId = SteamID.fromIndividualAccountID(player.account_id).getSteamID64()
|
658
659
|
}
|
659
660
|
callGCCallback('PlayersProfile' + player?.account_id, player)
|
660
661
|
callEvent(events.playersProfile, player)
|