Skip to content

Commit

Permalink
fix: negate classic mod check
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxOhn committed Oct 13, 2024
1 parent 25d8d29 commit f646cba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/osu/performance/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -778,7 +778,7 @@ impl OsuPerformanceInner<'_> {
// * of the calculation we focus on hitting the timing hit window.
let mut amount_hit_objects_with_acc = self.attrs.n_circles;

if using_classic_slider_acc {
if !using_classic_slider_acc {
amount_hit_objects_with_acc += self.attrs.n_sliders;
}

Expand Down

0 comments on commit f646cba

Please sign in to comment.