@Override
 public EnumFacing getElectricInputDirection() {
   return EnumFacing.getFront((this.getBlockMetadata() & 3) + 2);
 }
 @Override
 public IBlockState getStateFromMeta(int meta) {
   return this.getDefaultState().withProperty(FACING, EnumFacing.getFront(meta));
 }