@rian8337/osu-difficulty-calculator 4.0.0-beta.80 → 4.0.0-beta.82
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 +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1254,7 +1254,7 @@ class DroidReadingEvaluator {
|
|
|
1254
1254
|
// Account for both past and current densities.
|
|
1255
1255
|
const densityFactor = Math.pow(Math.max(1, futureObjectDifficultyInfluence +
|
|
1256
1256
|
pastObjectDifficultyInfluence -
|
|
1257
|
-
2),
|
|
1257
|
+
2), 2.3) * 3.2;
|
|
1258
1258
|
hiddenDifficulty +=
|
|
1259
1259
|
(timeSpentInvisibleFactor + densityFactor) *
|
|
1260
1260
|
constantAngleNerfFactor *
|
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.82",
|
|
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",
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"publishConfig": {
|
|
39
39
|
"access": "public"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "de134bf082f310d8b84bfa2d99f42d1f2044398b"
|
|
42
42
|
}
|