Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,8 @@ public void internalSetAbsorptionAmount(float amount) {

@Override
protected void tickHeadTurn(final float p_110146_1_) {
// Must run first, it is the only thing that updates yBodyRot, which the look control clamps yHeadRot against
super.tickHeadTurn(p_110146_1_);
// Make the body rotation follow head rotation
this.setYRot(this.getYHeadRot());
}
Expand Down
Loading