blob: 48a4391ac568c9ac81c8de03efbf0cc351483a6c [file] [log] [blame] [raw]
package com.legacy.aether.blocks.natural;
import com.legacy.aether.items.util.DoubleDropHelper;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.world.World;
public class BlockQuicksoil extends Block {
public BlockQuicksoil() {
super(Material.sand);
this.slipperiness = 1.1F;
this.setHardness(0.5F);
this.setStepSound(soundTypeSand);
this.setHarvestLevel("shovel", 0);
this.setBlockTextureName("aether_legacy:quicksoil");
}
@Override
public void harvestBlock(World worldIn, EntityPlayer player, int x, int y, int z, int meta) {
DoubleDropHelper.dropBlock(player, x, y, z, this, meta);
}
@Override
public int damageDropped(int meta) {
return 1;
}
}