@rian8337/osu-droid-replay-analyzer 1.4.8 → 1.4.9

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.
@@ -510,7 +510,7 @@ class ReplayAnalyzer {
510
510
  * Requires `analyze()` to be called first and `map` to be defined as `DroidStarRating` or `RebalanceDroidStarRating`.
511
511
  */
512
512
  checkFor3Finger() {
513
- if (!(this.map instanceof osu_difficulty_calculator_1.DroidStarRating ||
513
+ if (!(this.map instanceof osu_difficulty_calculator_1.DroidStarRating &&
514
514
  this.map instanceof osu_rebalance_difficulty_calculator_1.DroidStarRating) ||
515
515
  !this.data) {
516
516
  return;
@@ -527,7 +527,7 @@ class ReplayAnalyzer {
527
527
  * Requires `analyze()` to be called first and `map` to be defined as `DroidStarRating` or `RebalanceDroidStarRating`.
528
528
  */
529
529
  checkFor2Hand() {
530
- if (!(this.map instanceof osu_difficulty_calculator_1.DroidStarRating ||
530
+ if (!(this.map instanceof osu_difficulty_calculator_1.DroidStarRating &&
531
531
  this.map instanceof osu_rebalance_difficulty_calculator_1.DroidStarRating) ||
532
532
  !this.data) {
533
533
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rian8337/osu-droid-replay-analyzer",
3
- "version": "1.4.8",
3
+ "version": "1.4.9",
4
4
  "description": "A replay analyzer for analyzing osu!droid replay files.",
5
5
  "keywords": [
6
6
  "osu",
@@ -33,7 +33,7 @@
33
33
  "dependencies": {
34
34
  "@rian8337/osu-base": "^1.4.8",
35
35
  "@rian8337/osu-difficulty-calculator": "^1.4.8",
36
- "@rian8337/osu-rebalance-difficulty-calculator": "^1.4.8",
36
+ "@rian8337/osu-rebalance-difficulty-calculator": "^1.4.9-alpha.1",
37
37
  "java-deserialization": "^0.1.0",
38
38
  "unzipper": "^0.10.11"
39
39
  },
@@ -45,5 +45,5 @@
45
45
  "publishConfig": {
46
46
  "access": "public"
47
47
  },
48
- "gitHead": "dd3ffd562dcdd8da4f2b48548b936a6012fdff1a"
48
+ "gitHead": "bddbc27155d8b971e3171719cfa5723be40e1125"
49
49
  }