Fixed bamboo drops for blocks with metadata

This commit is contained in:
Adubbz 2016-01-06 17:29:57 +11:00
parent 840e9631d5
commit 8a0b97f907

View file

@ -96,7 +96,12 @@ public class BlockBOPBamboo extends BlockBOPDecoration
return ((Integer)state.getValue(AGE)).intValue();
}
@Override
public int damageDropped(IBlockState state)
{
//We don't want item drops to have metadata for the age
return 0;
}
// restore collision box removed by BlockDecoration
@Override