Skip to content

Commit

Permalink
Allow Glowshroom blocks to be mined with Silk Touch. #391
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbegt committed Aug 29, 2017
1 parent bdacbf2 commit 8082df8
Showing 1 changed file with 13 additions and 0 deletions.
Expand Up @@ -123,6 +123,19 @@ public boolean isOpaqueCube(IBlockState state)
return false;
}

@Override
@Deprecated
protected boolean canSilkHarvest()
{
return true;
}

@Override
protected ItemStack getSilkTouchDrop(IBlockState state)
{
return new ItemStack(Item.getItemFromBlock(this), 1, 0);
}

@Override
@Deprecated
@SideOnly(Side.CLIENT)
Expand Down

0 comments on commit 8082df8

Please sign in to comment.