@juice789/tf2items 1.0.38 → 1.0.39

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.
@@ -35,10 +35,10 @@ function* fetchAppDataInventory(inventory, d = 1000, cache = []) {
35
35
  const ids = without(cache.map(props(['classid', 'instanceid'])), getAssetClassIds(inventory))
36
36
  while (ids.length > 0 && p < ids.length) {
37
37
  yield delay(d)
38
- const query = getAssetClassQuery(ids.slice(p, p + 150))
38
+ const query = getAssetClassQuery(ids.slice(p, p + 125))
39
39
  const { result } = yield call(getAssetClassInfo, query)
40
40
  assetClasses = mergeRight(assetClasses, transformAssetClasses(result))
41
- p += 150
41
+ p += 125
42
42
  }
43
43
  return mergeAssetClasses(assetClasses, inventory)
44
44
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juice789/tf2items",
3
- "version": "1.0.38",
3
+ "version": "1.0.39",
4
4
  "description": "tf2 item schema thingys",
5
5
  "main": "app.js",
6
6
  "scripts": {