Java Code Examples for net.minecraft.block.material.EnumPushReaction#DESTROY
The following examples show how to use
net.minecraft.block.material.EnumPushReaction#DESTROY .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: BlockFuton.java From Sakura_mod with MIT License | 4 votes |
@Override public EnumPushReaction getMobilityFlag(IBlockState state) { return EnumPushReaction.DESTROY; }
Example 2
Source File: BlockFrame.java From GregTech with GNU Lesser General Public License v3.0 | 4 votes |
@Override public EnumPushReaction getMobilityFlag(IBlockState state) { return EnumPushReaction.DESTROY; }
Example 3
Source File: BlockFoam.java From GregTech with GNU Lesser General Public License v3.0 | 4 votes |
@Override public EnumPushReaction getMobilityFlag(IBlockState state) { return EnumPushReaction.DESTROY; }
Example 4
Source File: BlockEngineeringTable.java From Cyberware with MIT License | 4 votes |
@Override public EnumPushReaction getMobilityFlag(IBlockState state) { return EnumPushReaction.DESTROY; }
Example 5
Source File: BlockSurgeryChamber.java From Cyberware with MIT License | 4 votes |
@Override public EnumPushReaction getMobilityFlag(IBlockState state) { return EnumPushReaction.DESTROY; }