Made booklet stand actually wooden

This commit is contained in:
Ellpeck 2015-11-30 21:27:10 +01:00
parent a99ff70c4d
commit fdd63c6d5e

View file

@ -32,11 +32,11 @@ import net.minecraft.world.World;
public class BlockBookletStand extends BlockContainerBase implements IActAddItemOrBlock{
public BlockBookletStand(){
super(Material.rock);
this.setHarvestLevel("pickaxe", 0);
this.setHardness(1.5F);
this.setResistance(10.0F);
this.setStepSound(soundTypeStone);
super(Material.wood);
this.setHarvestLevel("axe", 0);
this.setHardness(1.0F);
this.setResistance(4.0F);
this.setStepSound(soundTypeWood);
float f = 1/16F;
this.setBlockBounds(f, 0F, f, 1F-f, 1F-4*f, 1F-f);