Reduce the cutoff threshold

This commit is contained in:
Sollace 2019-07-09 14:40:55 +02:00
parent 54e939248f
commit ee8e970cee

View file

@ -67,7 +67,7 @@ public class HorseCam {
// Small angles aren't worth changing. // Small angles aren't worth changing.
// Helps with bows, arrows, and projectiles. // Helps with bows, arrows, and projectiles.
if (Math.abs(originalPitch) < 10) { if (Math.abs(originalPitch) < 2) {
return originalPitch; return originalPitch;
} }