steamutils 1.3.52 → 1.3.53

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/SteamClient.js +2 -7
  2. 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
- const shouldHello = processedApps.some((app) => parseInt(app.game_id) === 730);
2018
- await sleep(2000);
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();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "steamutils",
3
- "version": "1.3.52",
3
+ "version": "1.3.53",
4
4
  "main": "index.js",
5
5
  "dependencies": {
6
6
  "alpha-common-utils": "^1.0.6",