always fadeout slider curve

This commit is contained in:
yugecin
2016-12-18 13:03:09 +01:00
parent cc41a54408
commit 62a7ee0f21
2 changed files with 35 additions and 32 deletions

View File

@@ -441,7 +441,7 @@ public class Slider implements GameObject {
}
data.hitResult(hitObject.getTime() + (int) sliderTimeTotal, result,
cx, cy, color, comboEnd, hitObject, type, sliderHeldToEnd,
currentRepeats + 1, curve, sliderHeldToEnd);
currentRepeats + 1, null, sliderHeldToEnd);
return result;
}
@@ -530,6 +530,9 @@ public class Slider implements GameObject {
// calculate and send slider result
hitResult();
// send 'curve fade out' hit result
data.sendSliderCurveResult(getEndTime(), color, curve);
return true;
}