Skip to content

Commit

Permalink
Revert head/tail circle visibility logic
Browse files Browse the repository at this point in the history
  • Loading branch information
Rian8337 committed Feb 26, 2021
1 parent 39803a4 commit bc728a2
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions src/ru/nsu/ccfit/zuev/osu/game/Slider.java
Original file line number Diff line number Diff line change
Expand Up @@ -1120,14 +1120,9 @@ public void update(final float dt) {
}
return;
} else {
if (Config.isUseSuperSlider() && repeatCount == 1) {
if (!reverse) {
startCircle.setAlpha(0);
startOverlay.setAlpha(0);
} else {
endCircle.setAlpha(0);
endOverlay.setAlpha(0);
}
if (Config.isUseSuperSlider()) {
startCircle.setAlpha(0);
startOverlay.setAlpha(0);
}
}

Expand Down

0 comments on commit bc728a2

Please sign in to comment.