()
| 23 | public static final PropertyBool EXPLODE = PropertyBool.create("explode"); |
| 24 | |
| 25 | public BlockTNT() |
| 26 | { |
| 27 | super(Material.tnt); |
| 28 | this.setDefaultState(this.blockState.getBaseState().withProperty(EXPLODE, Boolean.FALSE)); |
| 29 | this.setCreativeTab(CreativeTabs.tabRedstone); |
| 30 | } |
| 31 | |
| 32 | public void onBlockAdded(World worldIn, BlockPos pos, IBlockState state) |
| 33 | { |
nothing calls this directly
no test coverage detected