From 50f9ecb46bc26cf01bc6a24299791f10b524aadf Mon Sep 17 00:00:00 2001 From: Atsuishio <842960157@qq.com> Date: Tue, 22 Apr 2025 23:04:29 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BE=AE=E8=B0=83=E6=B3=A2=E5=A1=9E=E5=85=8B?= =?UTF-8?q?=E5=8A=A8=E7=94=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/atsuishio/superbwarfare/event/ClientEventHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/atsuishio/superbwarfare/event/ClientEventHandler.java b/src/main/java/com/atsuishio/superbwarfare/event/ClientEventHandler.java index ce4dc8074..b27f011c7 100644 --- a/src/main/java/com/atsuishio/superbwarfare/event/ClientEventHandler.java +++ b/src/main/java/com/atsuishio/superbwarfare/event/ClientEventHandler.java @@ -1462,7 +1462,7 @@ public class ClientEventHandler { bowPullTimer = Math.min(bowPullTimer + 0.024 * times, 1.4); bowPower = Math.min(bowPower + 0.018 * times, 1); } else { - bowPullTimer = Math.max(bowPullTimer - 0.025 * times, 0); + bowPullTimer = Math.max(bowPullTimer - 0.021 * times, 0); bowPower = Math.max(bowPower - 0.04 * times, 0); } bowPullPos = 0.5 * Math.cos(Math.PI * Math.pow(Math.pow(Mth.clamp(bowPullTimer, 0, 1), 2) - 1, 2)) + 0.5;