Fixed bamboo drops for blocks with metadata
This commit is contained in:
parent
840e9631d5
commit
8a0b97f907
1 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue