From e95b61e818f4b9c6419b4e83e590f9bd46834936 Mon Sep 17 00:00:00 2001 From: yoyosource Date: Thu, 21 Jul 2022 16:53:43 +0200 Subject: [PATCH] Remove velocity min Signed-off-by: yoyosource --- .../features/simulator/show/PreviewEntityShowMode.java | 3 --- 1 file changed, 3 deletions(-) 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 0c6a6cff..b03a8a29 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,9 +32,6 @@ public class PreviewEntityShowMode extends FactoredEntityShowMode { @Override public void show(TNTPosition position) { - if (position.getVelocity().lengthSquared() < 0.5) { - return; - } super.show(position); }