my code now is
@Overrride
public ArrayList<ItemStack> getDrops(World world, int x, int y, int z, int metadata, int fortune){
ArrayList<ItemStack> stack = super.getDrop(world, x, y, z, metadata, fortune);
stack.add(new ItemStack(items.feather, 1));
stack.add(new ItemStack(items.stick, 1));
stack.add(new ItemStack(items.string, 1));
stack.add(new ItemStack(items.egg, 1));
Return stack;
}
So i get all the items but it also drops the block that I break and i don't want this to happen also is there a way of changing the drops for a set number to 1-5 drop. If so how would I code the Random amount dropped