diff --git a/BauSystem_Main/src/de/steamwar/bausystem/tracer/show/mode/Basic.java b/BauSystem_Main/src/de/steamwar/bausystem/tracer/show/mode/Basic.java index 6ff527f..a91b117 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/tracer/show/mode/Basic.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/tracer/show/mode/Basic.java @@ -29,7 +29,11 @@ public class Basic implements ShowMode { } RoundedTNTPosition roundedTNTPosition = new RoundedTNTPosition(position); if (tntEntityMap.containsKey(roundedTNTPosition)) { - return; + if (!position.isExploded()) { + return; + } else { + tntEntityMap.remove(roundedTNTPosition).hide(player).killEntity(); + } } tntEntityMap.put(roundedTNTPosition, createEntity(position.getLocation(), position.isExploded(), true)); }