All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.minecraft.server.BlockClay Maven / Gradle / Ivy

package net.minecraft.server;

import java.util.Random;

public class BlockClay extends Block {

  public BlockClay() {
    super(Material.CLAY);
    this.a(CreativeModeTab.b);
  }

  public Item getDropType(IBlockData iblockdata, Random random, int i) {
    return Items.CLAY_BALL;
  }

  public int a(Random random) {
    return 4;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy