@rian8337/osu-difficulty-calculator 4.0.0-beta.79 → 4.0.0-beta.80

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 +2 -2
  2. 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), 1.2) * 1.5;
1257
+ 2), 1.5) * 2;
1258
1258
  hiddenDifficulty +=
1259
1259
  (timeSpentInvisibleFactor + densityFactor) *
1260
1260
  constantAngleNerfFactor *
@@ -1424,7 +1424,7 @@ class DroidReadingEvaluator {
1424
1424
  DroidReadingEvaluator.emptyModMap = new osuBase.ModMap();
1425
1425
  DroidReadingEvaluator.readingWindowSize = 3000; // 3 seconds
1426
1426
  DroidReadingEvaluator.distanceInfluenceThreshold = DroidDifficultyHitObject.normalizedDiameter * 1.25; // 1.25 circles distance between centers
1427
- DroidReadingEvaluator.hiddenMultiplier = 0.25;
1427
+ DroidReadingEvaluator.hiddenMultiplier = 0.5;
1428
1428
  DroidReadingEvaluator.densityMultiplier = 0.8;
1429
1429
  DroidReadingEvaluator.densityDifficultyBase = 1.5;
1430
1430
  DroidReadingEvaluator.preemptBalancingFactor = 220000;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rian8337/osu-difficulty-calculator",
3
- "version": "4.0.0-beta.79",
3
+ "version": "4.0.0-beta.80",
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": "f74fd671070428e18592487c6a70a8844c72d0d8"
41
+ "gitHead": "7d0e0606244c3f9f25711386f893d26b36338cb7"
42
42
  }