Item Nodes can now be disabled by a (weak) redstone signal
This commit is contained in:
parent
adc100ee17
commit
587e94d197
4 changed files with 44 additions and 14 deletions
|
@ -41,6 +41,12 @@ public abstract class BlockRoutingNode extends BlockContainer
|
|||
this.setDefaultState(this.blockState.getBaseState().withProperty(DOWN, false).withProperty(UP, false).withProperty(NORTH, false).withProperty(EAST, false).withProperty(SOUTH, false).withProperty(WEST, false));
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canConnectRedstone(IBlockState state, IBlockAccess world, BlockPos pos, EnumFacing side)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue