steamutils 1.3.52 → 1.3.53
Sign up to get free protection for your applications and to get access to all the features.
- 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();
|