Guest User

Untitled

a guest
Nov 16th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.34 KB | None | 0 0
  1. package net.minecraft.src;
  2.  
  3. import java.util.Random;
  4.  
  5. public class DirtBrick extends Block
  6. {
  7.     public DirtBrick(int i, int j)
  8.     {
  9.         super(i, j, Material.ground);
  10.     }
  11.  
  12.     public int idDropped(int i, Random random, int j)
  13.     {
  14.         return mod_dirt_brick.dirtbrick.blockID;
  15.     }
  16.     public int quantityDropped(Random random)
  17.     {
  18.         return 1;
  19.     }
  20. }
Add Comment
Please, Sign In to add comment