Files
PrimalSorcery/build/tmp/recompileMc/sources/net/minecraft/block/BlockPackedIce.java
Mohammad-Ali Minaie b86dedad2f base mod created
2018-10-08 09:07:47 -04:00

23 lines
524 B
Java

package net.minecraft.block;
import java.util.Random;
import net.minecraft.block.material.Material;
import net.minecraft.creativetab.CreativeTabs;
public class BlockPackedIce extends Block
{
public BlockPackedIce()
{
super(Material.PACKED_ICE);
this.slipperiness = 0.98F;
this.setCreativeTab(CreativeTabs.BUILDING_BLOCKS);
}
/**
* Returns the quantity of items to drop on block destruction.
*/
public int quantityDropped(Random random)
{
return 0;
}
}