Fix pippi preventing wobbly streams quite agressively
This commit is contained in:
parent
3a30087929
commit
0eb5158384
|
@ -52,6 +52,7 @@ public class Pippi {
|
||||||
if (!slowSlider) {
|
if (!slowSlider) {
|
||||||
slowSlider = circleLazySliders && isCurrentLazySlider;
|
slowSlider = circleLazySliders && isCurrentLazySlider;
|
||||||
}
|
}
|
||||||
|
System.out.println(enabled);
|
||||||
if ((!enabled || c.isSpinner()) && !slowSlider) {
|
if ((!enabled || c.isSpinner()) && !slowSlider) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -92,7 +93,7 @@ public class Pippi {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean shouldPreventWobblyStream(double distance) {
|
public static boolean shouldPreventWobblyStream(double distance) {
|
||||||
return enabled && distance < Circle.diameter * 1.7f && preventWobblyStreams;
|
return enabled && distance < Circle.diameter * 0.93f && preventWobblyStreams;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user