From 974ee5cce14aed2ea7023bdb0fac80cebc42f0c5 Mon Sep 17 00:00:00 2001 From: Atsuihsio <842960157@qq.com> Date: Wed, 1 Jan 2025 20:53:41 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E9=A3=9E=E6=8E=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/atsuishio/superbwarfare/entity/Ah6Entity.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/atsuishio/superbwarfare/entity/Ah6Entity.java b/src/main/java/com/atsuishio/superbwarfare/entity/Ah6Entity.java index dcd8a5111..9e9a92c8e 100644 --- a/src/main/java/com/atsuishio/superbwarfare/entity/Ah6Entity.java +++ b/src/main/java/com/atsuishio/superbwarfare/entity/Ah6Entity.java @@ -143,9 +143,9 @@ public class Ah6Entity extends MobileVehicleEntity implements GeoEntity, IHelico if(!(this.upInputDown || this.forwardInputDown || this.downInputDown || this.backInputDown)) { if (this.getDeltaMovement().y() + 0.06 < 0) { - this.entityData.set(POWER, Math.min(this.entityData.get(POWER) + 0.0005f, 0.12f)); + this.entityData.set(POWER, Math.min(this.entityData.get(POWER) + 0.0002f, 0.12f)); } else { - this.entityData.set(POWER, Math.max(this.entityData.get(POWER) - 0.0005f, 0)); + this.entityData.set(POWER, Math.max(this.entityData.get(POWER) - 0.0006f, 0)); } } }