From dec48e9d8e1d338216be1506ffdc5726d73c82aa Mon Sep 17 00:00:00 2001 From: jhqwqmc Date: Sun, 14 Sep 2025 21:42:48 +0800 Subject: [PATCH] =?UTF-8?q?perf(core):=20=E4=BC=98=E5=8C=96=E6=96=B9?= =?UTF-8?q?=E5=9D=97=E5=AE=9E=E4=BD=93=E7=9A=84=20tick=20=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=E6=9C=BA=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../craftengine/bukkit/block/entity/BaseParticleBlockEntity.java | 1 - 1 file changed, 1 deletion(-) diff --git a/bukkit/src/main/java/net/momirealms/craftengine/bukkit/block/entity/BaseParticleBlockEntity.java b/bukkit/src/main/java/net/momirealms/craftengine/bukkit/block/entity/BaseParticleBlockEntity.java index 9643a2bfd..fb8d63c83 100644 --- a/bukkit/src/main/java/net/momirealms/craftengine/bukkit/block/entity/BaseParticleBlockEntity.java +++ b/bukkit/src/main/java/net/momirealms/craftengine/bukkit/block/entity/BaseParticleBlockEntity.java @@ -18,7 +18,6 @@ public abstract class BaseParticleBlockEntity extends BlockEntity { } public static void tick(CEWorld ceWorld, BlockPos blockPos, ImmutableBlockState state, BaseParticleBlockEntity particle) { - if (true) return; particle.tickCount++; if (particle.tickCount % 10 != 0) return; particle.animateTick(state, ceWorld.world(), blockPos);