
net.minecraft.server.BlockLightStone Maven / Gradle / Ivy
package net.minecraft.server;
import java.util.Random;
public class BlockLightStone extends Block {
public BlockLightStone(Material material) {
super(material);
this.a(CreativeModeTab.b);
}
public int getDropCount(int i, Random random) {
return MathHelper.clamp(this.a(random) + random.nextInt(i + 1), 1, 4);
}
public int a(Random random) {
return 2 + random.nextInt(3);
}
public Item getDropType(IBlockData iblockdata, Random random, int i) {
return Items.GLOWSTONE_DUST;
}
public MaterialMapColor g(IBlockData iblockdata) {
return MaterialMapColor.d;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy