steamutils 1.3.47 → 1.3.48
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 -2
- package/package.json +1 -1
package/SteamClient.js
CHANGED
|
@@ -1977,11 +1977,11 @@ function SteamClient({ username, password, cookie, clientJsToken, isAutoRequestF
|
|
|
1977
1977
|
|
|
1978
1978
|
steamClient.gamesPlayed(apps);
|
|
1979
1979
|
const shouldHello = apps.some((app) => parseInt(app) === 730);
|
|
1980
|
-
await sleep(
|
|
1980
|
+
await sleep(2000);
|
|
1981
1981
|
if (shouldHello) {
|
|
1982
1982
|
await sendHello();
|
|
1983
1983
|
}
|
|
1984
|
-
await sleep(
|
|
1984
|
+
await sleep(2000);
|
|
1985
1985
|
if (shouldHello) {
|
|
1986
1986
|
await sendHello();
|
|
1987
1987
|
}
|