steamutils 1.4.20 → 1.4.21

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.
@@ -0,0 +1,15 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="GitToolBoxProjectSettings">
4
+ <option name="commitMessageIssueKeyValidationOverride">
5
+ <BoolValueOverride>
6
+ <option name="enabled" value="true" />
7
+ </BoolValueOverride>
8
+ </option>
9
+ <option name="commitMessageValidationEnabledOverride">
10
+ <BoolValueOverride>
11
+ <option name="enabled" value="true" />
12
+ </BoolValueOverride>
13
+ </option>
14
+ </component>
15
+ </project>
package/SteamClient.js CHANGED
@@ -2246,14 +2246,10 @@ function SteamClient({ username, password, cookie, clientJsToken, isAutoRequestF
2246
2246
  }
2247
2247
 
2248
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
- },
2249
+ steamClient.sendToGC(
2250
+ 730,
2251
+ Protos.csgo.ECsgoGCMsg.k_EMsgGCCStrike15_v2_AcknowledgePenalty,
2252
+ {},
2257
2253
  protoEncode(Protos.csgo.CMsgGCCStrike15_v2_AcknowledgePenalty, {
2258
2254
  acknowledged: 1,
2259
2255
  }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "steamutils",
3
- "version": "1.4.20",
3
+ "version": "1.4.21",
4
4
  "main": "index.js",
5
5
  "dependencies": {
6
6
  "alpha-common-utils": "^1.0.6",