0
Files
mc-1.8.8/server/src/main/java/net/minecraft/block/BlockPackedIce.java
2022-03-24 02:47:01 +03:00

24 lines
517 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.packedIce);
this.slipperiness = 0.98F;
this.setCreativeTab(CreativeTabs.tabBlock);
}
/**
* Returns the quantity of items to drop on block destruction.
*/
public int quantityDropped(Random random)
{
return 0;
}
}