Skip to content

Commit

Permalink
retweak some values...
Browse files Browse the repository at this point in the history
  • Loading branch information
Hazuki-san committed Oct 19, 2023
1 parent 812d849 commit 72bc84e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/osu/pp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ impl OsuPpInner {

// stream aim nerf
if (self.attrs.aim / self.attrs.speed) < 1.0 && self.mods.rx() {
aim_value *= self.attrs.aim / self.attrs.speed - 0.12
aim_value *= self.attrs.aim / self.attrs.speed - 0.5
}

let total_hits = self.total_hits();
Expand Down Expand Up @@ -541,9 +541,9 @@ impl OsuPpInner {
}

if self.mods.dt() {
aim_value *= 2.31_f64.powf(1.0 + diff_ratio / 11.0) * 0.43;
aim_value *= 2.31_f64.powf(1.0 + diff_ratio / 11.0) * 0.4;
} else {
aim_value *= 2.31_f64.powf(1.275 + diff_ratio / 4.0) * 0.38;
aim_value *= 2.31_f64.powf(1.1 + diff_ratio / 4.0) * 0.4;
};

// nerf short maps
Expand Down

0 comments on commit 72bc84e

Please sign in to comment.