diff --git a/BauSystem_Main/src/de/steamwar/bausystem/commands/CommandTNT.java b/BauSystem_Main/src/de/steamwar/bausystem/commands/CommandTNT.java index e86ba40..c976f9a 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/commands/CommandTNT.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/commands/CommandTNT.java @@ -139,11 +139,7 @@ public class CommandTNT implements CommandExecutor, Listener { } private void tntToggle(Region region, TNTMode requestedMode, String requestedMessage) { - if (requestedMode != null) { - if (!region.hasTestblock() && requestedMode == TNTMode.ONLY_TB) { - requestedMode = TNTMode.ON; - requestedMessage = getEnableMessage(); - } + if (requestedMode != null && region.hasTestblock()) { region.setTntMode(requestedMode); RegionToggleCommand.actionBar(region, requestedMessage); return;