File tree Expand file tree Collapse file tree
src/main/java/traben/entity_model_features/models/animation Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11
22[ 3.0.10]
33- fixed armor textures breaking on 3.0.9 in MC 1.21.9+
4+ - fixed entities flickering in some GUIs in older versions, e.g. horses inventory when using Fresh Animations & some player GUIs
45
56[ 3.0.9]
67- neoforge 1.21.11
Original file line number Diff line number Diff line change @@ -1158,6 +1158,7 @@ private static void doLimbValues() {
11581158 public static float getHeadYaw () {
11591159 if (emfState == null ) return 0 ;
11601160 if (Float .isNaN (headYaw )) {
1161+ if (isInGui ()) return 0 ;
11611162 doHeadValues ();
11621163 }
11631164 return headYaw ;
@@ -1170,6 +1171,7 @@ public static void setHeadYaw(float headYaw) {
11701171 public static float getHeadPitch () {
11711172 if (emfState == null ) return 0 ;
11721173 if (Float .isNaN (headPitch )) {
1174+ if (isInGui ()) return 0 ;
11731175 doHeadValues ();
11741176 }
11751177 return headPitch ;
You can’t perform that action at this time.
0 commit comments