steamutils 1.3.52 → 1.3.53
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 +2 -7
- package/package.json +1 -1
package/SteamClient.js
CHANGED
|
@@ -2014,13 +2014,8 @@ function SteamClient({ username, password, cookie, clientJsToken, isAutoRequestF
|
|
|
2014
2014
|
});
|
|
2015
2015
|
|
|
2016
2016
|
steamClient.gamesPlayed(processedApps);
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
if (shouldHello) {
|
|
2020
|
-
await sendHello();
|
|
2021
|
-
}
|
|
2022
|
-
await sleep(2000);
|
|
2023
|
-
if (shouldHello) {
|
|
2017
|
+
if (processedApps.some((app) => parseInt(app.game_id) === 730)) {
|
|
2018
|
+
await sleep(500);
|
|
2024
2019
|
await sendHello();
|
|
2025
2020
|
}
|
|
2026
2021
|
updateFakeGameScore();
|