steamutils 1.4.19 → 1.4.20

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="GitToolBoxBlameSettings">
4
+ <option name="version" value="2" />
5
+ </component>
6
+ </project>
package/SteamClient.js CHANGED
@@ -2245,6 +2245,21 @@ function SteamClient({ username, password, cookie, clientJsToken, isAutoRequestF
2245
2245
  });
2246
2246
  }
2247
2247
 
2248
+ function acknowledgePenalty() {
2249
+ steamClient._send(
2250
+ {
2251
+ msg: Protos.csgo.ECsgoGCMsg.k_EMsgGCCStrike15_v2_AcknowledgePenalty,
2252
+ proto: {
2253
+ steamid: steamClient.steamID.getSteamID64(),
2254
+ routing_appid: 730,
2255
+ },
2256
+ },
2257
+ protoEncode(Protos.csgo.CMsgGCCStrike15_v2_AcknowledgePenalty, {
2258
+ acknowledged: 1,
2259
+ }),
2260
+ );
2261
+ }
2262
+
2248
2263
  return {
2249
2264
  init,
2250
2265
  partySearch,
@@ -2449,6 +2464,7 @@ function SteamClient({ username, password, cookie, clientJsToken, isAutoRequestF
2449
2464
  },
2450
2465
  redeemFreeReward,
2451
2466
  requestJoinFriendData,
2467
+ acknowledgePenalty,
2452
2468
  };
2453
2469
  }
2454
2470
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "steamutils",
3
- "version": "1.4.19",
3
+ "version": "1.4.20",
4
4
  "main": "index.js",
5
5
  "dependencies": {
6
6
  "alpha-common-utils": "^1.0.6",