diff --git a/src/main/java/com/atsuishio/superbwarfare/entity/vehicle/A10Entity.java b/src/main/java/com/atsuishio/superbwarfare/entity/vehicle/A10Entity.java index d68b33850..429c59526 100644 --- a/src/main/java/com/atsuishio/superbwarfare/entity/vehicle/A10Entity.java +++ b/src/main/java/com/atsuishio/superbwarfare/entity/vehicle/A10Entity.java @@ -654,7 +654,7 @@ public class A10Entity extends ContainerMobileVehicleEntity implements GeoEntity Matrix4f transform = getVehicleTransform(1); float x = 0f; - float y = 0.1f + (float) passenger.getVehicleAttachmentPoint(this).y; + float y = -1.0f + (float) passenger.getVehicleAttachmentPoint(this).y; float z = 3.95f; Vector4f worldPosition = transformPosition(transform, x, y, z); diff --git a/src/main/java/com/atsuishio/superbwarfare/entity/vehicle/Tom6Entity.java b/src/main/java/com/atsuishio/superbwarfare/entity/vehicle/Tom6Entity.java index 148331095..3c401aad7 100644 --- a/src/main/java/com/atsuishio/superbwarfare/entity/vehicle/Tom6Entity.java +++ b/src/main/java/com/atsuishio/superbwarfare/entity/vehicle/Tom6Entity.java @@ -273,7 +273,7 @@ public class Tom6Entity extends MobileVehicleEntity implements GeoEntity { Matrix4f transform = getVehicleTransform(1); float x = 0f; - float y = 0.45f + (float) passenger.getVehicleAttachmentPoint(this).y; + float y = -0.45f + (float) passenger.getVehicleAttachmentPoint(this).y; float z = -0.4f; int i = this.getSeatIndex(passenger);