@rian8337/osu-difficulty-calculator 4.0.0-beta.59 → 4.0.0-beta.60

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -2245,7 +2245,7 @@ class PerformanceCalculator {
2245
2245
  * @returns Whether the attributes are cacheable.
2246
2246
  */
2247
2247
  isCacheableAttribute(attributes) {
2248
- return typeof attributes.mods === "string";
2248
+ return Array.isArray(attributes.mods);
2249
2249
  }
2250
2250
  }
2251
2251
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rian8337/osu-difficulty-calculator",
3
- "version": "4.0.0-beta.59",
3
+ "version": "4.0.0-beta.60",
4
4
  "description": "A module for calculating osu!standard beatmap difficulty and performance value with respect to the current difficulty and performance algorithm.",
5
5
  "keywords": [
6
6
  "osu",
@@ -33,10 +33,10 @@
33
33
  "url": "https://github.com/Rian8337/osu-droid-module/issues"
34
34
  },
35
35
  "dependencies": {
36
- "@rian8337/osu-base": "^4.0.0-beta.59"
36
+ "@rian8337/osu-base": "^4.0.0-beta.60"
37
37
  },
38
38
  "publishConfig": {
39
39
  "access": "public"
40
40
  },
41
- "gitHead": "25c12931fc18f2ba9633883b96ad1e75033d1b70"
41
+ "gitHead": "0071892a772185387800f6f1339512345b39c34e"
42
42
  }