8 sept. 2015, 21:12

je les met ou ??

code:

public class PickaxeRed extends ItemPickaxe {

protected PickaxeRed(ToolMaterial pioche) {
super(pioche);
}

public float func_150893_a(ItemStack stack, Block block)
{
   return block == Blocks.redstone_ore || block == Blocks.lit_redstone_ore ? this.efficiencyOnProperMaterial : 1.0F;

}

private Block[] blocksEffectiveAgainst = new Block[]
        {
            Blocks.redstone_ore, 
    };

    int harvest = 1;

protected float efficiencyOnProperMaterial;

@Override
public float getDigSpeed(ItemStack stack, Block block, int meta)
{
   return func_150893_a(stack, block);

}

public boolean func_150897_b(Block block)
{
    return block == Blocks.redstone_ore || block == Blocks.lit_redstone_ore;

}

}