Correct missed diff

This commit is contained in:
Travis Watkins
2014-03-24 15:22:15 -05:00
parent d51463d162
commit 4992df25ec
3 changed files with 3 additions and 3 deletions

View File

@@ -1407,7 +1407,7 @@ public abstract class EntityLiving extends Entity {
double d3 = MathHelper.g(this.bk - (double) this.yaw);
this.yaw = (float) ((double) this.yaw + d3 / (double) this.bg);
this.pitch = (float) ((double) this.pitch + (this.bm - (double) this.pitch) / (double) this.bg);
this.pitch = (float) ((double) this.pitch + (this.bl - (double) this.pitch) / (double) this.bg);
--this.bg;
this.setPosition(d0, d1, d2);
this.b(this.yaw, this.pitch);