eddef226e0
it.
31 lines
762 B
Java
31 lines
762 B
Java
package biomesoplenty.blocks;
|
|
|
|
import biomesoplenty.BiomesOPlenty;
|
|
|
|
import net.minecraft.block.Block;
|
|
import net.minecraft.block.material.Material;
|
|
import net.minecraft.client.renderer.texture.IconRegister;
|
|
|
|
@Deprecated
|
|
public class BlockAcaciaPlank extends Block
|
|
{
|
|
public static final String[] woodType = new String[] {"acacia"};
|
|
|
|
public BlockAcaciaPlank(int par1)
|
|
{
|
|
super(par1, Material.wood);
|
|
this.setBurnProperties(this.blockID, 5, 20);
|
|
this.setCreativeTab(BiomesOPlenty.tabBiomesOPlenty);
|
|
}
|
|
|
|
@Override
|
|
public void registerIcons(IconRegister par1IconRegister)
|
|
{
|
|
this.blockIcon = par1IconRegister.registerIcon("BiomesOPlenty:acaciaplank");
|
|
}
|
|
|
|
public int damageDropped(int par1)
|
|
{
|
|
return par1;
|
|
}
|
|
}
|