mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-13 16:24:23 +01:00
Reduce the cutoff threshold
This commit is contained in:
parent
54e939248f
commit
ee8e970cee
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue