@rian8337/osu-difficulty-calculator 4.0.0-beta.65 → 4.0.0-beta.68
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.
- package/dist/index.js +2 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -75,6 +75,7 @@ class DifficultyCalculator {
|
|
|
75
75
|
osuBase.ModRelax,
|
|
76
76
|
osuBase.ModAutopilot,
|
|
77
77
|
osuBase.ModMirror,
|
|
78
|
+
osuBase.ModRandom,
|
|
78
79
|
];
|
|
79
80
|
}
|
|
80
81
|
calculate(beatmap, mods) {
|
|
@@ -1807,7 +1808,7 @@ class DroidDifficultyCalculator extends DifficultyCalculator {
|
|
|
1807
1808
|
constructor() {
|
|
1808
1809
|
super();
|
|
1809
1810
|
this.difficultyMultiplier = 0.18;
|
|
1810
|
-
this.difficultyAdjustmentMods.push(osuBase.ModPrecise, osuBase.ModScoreV2, osuBase.ModTraceable);
|
|
1811
|
+
this.difficultyAdjustmentMods.push(osuBase.ModPrecise, osuBase.ModScoreV2, osuBase.ModTraceable, osuBase.ModReplayV6);
|
|
1811
1812
|
}
|
|
1812
1813
|
retainDifficultyAdjustmentMods(mods) {
|
|
1813
1814
|
return mods.filter((mod) => mod.isApplicableToDroid() &&
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rian8337/osu-difficulty-calculator",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.68",
|
|
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.
|
|
36
|
+
"@rian8337/osu-base": "^4.0.0-beta.68"
|
|
37
37
|
},
|
|
38
38
|
"publishConfig": {
|
|
39
39
|
"access": "public"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "7e5fb503347032ae2a6337bbc25a76c95a54f7d8"
|
|
42
42
|
}
|