From a13b11e645874784da148a026b56329f85df87e8 Mon Sep 17 00:00:00 2001 From: Light_Quanta Date: Fri, 11 Apr 2025 18:07:39 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BA=8C=E6=AE=B5=E8=B7=B3?= =?UTF-8?q?=E8=A7=A6=E5=8F=91=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/atsuishio/superbwarfare/block/JumpPadBlock.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/atsuishio/superbwarfare/block/JumpPadBlock.java b/src/main/java/com/atsuishio/superbwarfare/block/JumpPadBlock.java index 76a22de1a..649ff523d 100644 --- a/src/main/java/com/atsuishio/superbwarfare/block/JumpPadBlock.java +++ b/src/main/java/com/atsuishio/superbwarfare/block/JumpPadBlock.java @@ -1,5 +1,6 @@ package com.atsuishio.superbwarfare.block; +import com.atsuishio.superbwarfare.Mod; import com.atsuishio.superbwarfare.entity.TargetEntity; import com.atsuishio.superbwarfare.entity.vehicle.base.CannonEntity; import com.atsuishio.superbwarfare.event.ClientEventHandler; @@ -126,7 +127,7 @@ public class JumpPadBlock extends Block { } if (entity instanceof Player player && player.level().isClientSide) { - ClientEventHandler.canDoubleJump = true; + Mod.queueClientWork(2, () -> ClientEventHandler.canDoubleJump = true); } } }