鼠标延迟修复
MouseDelayFix是Minecraft 1.8.x,1.9.x和1.10.x的伪造模块,用于修复Minecraft 1.8( )中引入的鼠标延迟错误。
错误
// EntityLivingBase
public Vec3 getLook( float partialTicks) {
if (partialTicks == 1.0F ) {
return this . getVectorForRotation( this . rotationPitch, this . rotationYawHead);
} else {
float f = this . prevRotationPitch + ( this . rotationPitch - this . prevRotationPitch) * partialTicks;
float f1 = this . prevRotationYawHead + ( this . rotationYawHead - this . prevRotationYaw
1