Advertisement
Aphex124

Untitled

Dec 15th, 2013
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. protected void dropRareDrop(int par1)
  2. {
  3. switch (this.rand.nextInt(3))
  4. {
  5. case 0:
  6. this.dropItem(Item.ingotIron.itemID, 1);
  7. break;
  8. case 1:
  9. this.dropItem(Item.carrot.itemID, 1);
  10. break;
  11. case 2:
  12. this.dropItem(Item.potato.itemID, 1);
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement