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);