暫定対応

DoorsModule.java:128~
 
        // Are we looking at the top half?
        // If we are, we need to get the bottom half instead
        if (!WallMatcher.PROTECTABLES_TRAP_DOORS.contains(block.getType()) && (block.getData() & 0x8) == 0x8) {
            // Inspect the bottom half instead, fool!
            if ((block.getType() == Material.WOODEN_DOOR) || (block.getType() == Material.IRON_DOOR_BLOCK)) {
                block = block.getRelative(BlockFace.DOWN);
            }
        }