diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/simulator/tnt/TNTElement.java b/BauSystem_Main/src/de/steamwar/bausystem/features/simulator/tnt/TNTElement.java index 8f56587d..fe98d61d 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/simulator/tnt/TNTElement.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/simulator/tnt/TNTElement.java @@ -172,7 +172,10 @@ public class TNTElement implements SimulatorElement { public boolean locations(Map>>> result, Region region, Location radius) { if (disabled) return false; Location location = getPosition().toLocation(SimulatorStorage.WORLD); - if (location.distanceSquared(radius) > 10000 || !region.inRegion(location, RegionType.NORMAL, RegionExtensionType.NORMAL)) { + if (region.isGlobal() && location.distanceSquared(radius) > 10000) { + return false; + } + if (!region.inRegion(location, RegionType.NORMAL, RegionExtensionType.NORMAL)) { return false; } Region thisRegion = Region.getRegion(location);