mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-25 13:57:59 +01:00
Fixed eye height being affected when it shouldn't
This commit is contained in:
parent
1ac35f1597
commit
f7576bc83b
1 changed files with 3 additions and 1 deletions
|
@ -53,8 +53,10 @@ abstract class MixinClientPlayerEntity extends AbstractClientPlayerEntity implem
|
|||
value += getVehicle().getEyeHeight(getVehicle().getPose());
|
||||
value -= getVehicle().getMountedHeightOffset();
|
||||
}
|
||||
|
||||
return Math.max(value, 0.1F);
|
||||
}
|
||||
|
||||
return Math.max(value, 0.3F);
|
||||
return value;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue