From cf46465cfdfcc4cdd61339a2ce9f3d5c4863dfb1 Mon Sep 17 00:00:00 2001 From: yoyosource Date: Thu, 21 Jul 2022 16:49:03 +0200 Subject: [PATCH] Hotfix stuff and rebuild Signed-off-by: yoyosource --- .../features/simulator/show/PreviewEntityShowMode.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/simulator/show/PreviewEntityShowMode.java b/BauSystem_Main/src/de/steamwar/bausystem/features/simulator/show/PreviewEntityShowMode.java index 3c1f9c81..0c6a6cff 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/simulator/show/PreviewEntityShowMode.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/simulator/show/PreviewEntityShowMode.java @@ -32,7 +32,7 @@ public class PreviewEntityShowMode extends FactoredEntityShowMode { @Override public void show(TNTPosition position) { - if (position.getVelocity().lengthSquared() < 1) { + if (position.getVelocity().lengthSquared() < 0.5) { return; } super.show(position);