fix mirror reversearrow animation drawing when it shouldn't

This commit is contained in:
yugecin 2016-12-12 20:35:40 +01:00
parent 69cdecca69
commit 33064b1e69

View File

@ -1213,7 +1213,7 @@ public class GameData {
public void sendRepeatSliderResult(int time, float x, float y, Color color, Curve curve, HitObjectType type) {
hitResultList.add(new HitObjectResult(time, HIT_SLIDER_REPEAT, x, y, color, type, curve, true, true));
if (Options.isMirror()) {
if (!Options.isMirror()) {
return;
}
float[] m = Utils.mirrorPoint(x, y);