Fixed incorrect rotations for items in the left hand. Closes #2548.

This commit is contained in:
RainWarrior 2016-03-16 03:58:51 +03:00
parent b81a13d010
commit 78a397bc69

View file

@ -403,7 +403,7 @@ public class ForgeHooksClient
matrix.mul(flipX, matrix);
matrix.mul(matrix, flipX);
}
if(pair.getRight() != null) multiplyCurrentGlMatrix(pair.getRight());
multiplyCurrentGlMatrix(matrix);
}
return pair.getLeft();
}