diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/loadtimer/Loadtimer.java b/BauSystem_Main/src/de/steamwar/bausystem/features/loadtimer/Loadtimer.java index 6af89373..6601e494 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/loadtimer/Loadtimer.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/loadtimer/Loadtimer.java @@ -132,6 +132,9 @@ public class Loadtimer implements Listener { if (stage == Stage.COUNTING) { if (event.getAction() == Action.RIGHT_CLICK_BLOCK) { Material type = event.getClickedBlock().getType(); + if (type == Material.IRON_TRAPDOOR) { + return; + } if (type.name().contains("_BUTTON") || type == Material.LEVER || type.name().contains("_TRAPDOOR") || type == Material.NOTE_BLOCK) { setActivate(); }