2013-03-28 19:03:53 +00:00
|
|
|
package tdwp_ftw.biomesop.blocks;
|
|
|
|
|
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.block.BlockStairs;
|
2013-03-30 10:54:53 +00:00
|
|
|
import net.minecraft.client.renderer.texture.IconRegister;
|
2013-04-10 01:14:41 +00:00
|
|
|
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
2013-03-28 19:03:53 +00:00
|
|
|
|
|
|
|
public class BlockDarkStairs extends BlockStairs
|
|
|
|
{
|
|
|
|
/** The block that is used as model for the stair. */
|
|
|
|
private final Block modelBlock;
|
|
|
|
|
2013-03-30 10:54:53 +00:00
|
|
|
public BlockDarkStairs(int par1, Block par2Block)
|
2013-03-28 19:03:53 +00:00
|
|
|
{
|
2013-03-30 10:54:53 +00:00
|
|
|
super(par1, par2Block, 0);
|
2013-03-28 19:03:53 +00:00
|
|
|
this.modelBlock = par2Block;
|
|
|
|
this.setLightOpacity(0);
|
|
|
|
this.setBurnProperties(this.blockID, 5, 20);
|
|
|
|
this.setCreativeTab(mod_BiomesOPlenty.tabBiomesOPlenty);
|
|
|
|
}
|
2013-03-30 10:54:53 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void registerIcons(IconRegister par1IconRegister)
|
|
|
|
{
|
|
|
|
this.blockIcon = par1IconRegister.registerIcon("BiomesOPlenty:darkplank");
|
|
|
|
}
|
|
|
|
|
2013-03-28 19:03:53 +00:00
|
|
|
}
|