()
| 22 | public static final PropertyBool POWERED = PropertyBool.create("powered"); |
| 23 | |
| 24 | protected BlockLever() |
| 25 | { |
| 26 | super(Material.circuits); |
| 27 | this.setDefaultState(this.blockState.getBaseState().withProperty(FACING, BlockLever.EnumOrientation.NORTH).withProperty(POWERED, Boolean.FALSE)); |
| 28 | this.setCreativeTab(CreativeTabs.tabRedstone); |
| 29 | } |
| 30 | |
| 31 | public AxisAlignedBB getCollisionBoundingBox(World worldIn, BlockPos pos, IBlockState state) |
| 32 | { |
nothing calls this directly
no test coverage detected