Advertisement
Guest User

CorruptDirt

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