if (face != BlockFace.BOTTOM && face != BlockFace.TOP) {
directional.setFacing(block, BlockFace.fromYaw(face.getDirection().getAxesAngleDeg().getY()
+ rotation.getAxesAngleDeg().getY()));
}
} else if (material instanceof Attachable) {
final Attachable attachable = (Attachable) material;
final Block block = position.getWorld().getBlock(transformed);
final BlockFace face = attachable.getAttachedFace(block);
if (face != BlockFace.BOTTOM && face != BlockFace.TOP) {
attachable.setAttachedFace(block, BlockFace.fromYaw(face.getDirection().getAxesAngleDeg().getY()
+ rotation.getAxesAngleDeg().getY()), null);
}
}
}