Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- BLOCK EGG CONTENTS:
- package net.minecraft.src;
- import java.util.Random;
- public class BlockEgg extends BlockDragonEgg
- {
- public BlockEgg(int par1, int par2)
- {
- super(par1,par2);
- }
- public int quantityDropped(Random random)
- {
- return 9;
- }
- public int idDropped(int par1, Random random, int par2)
- {
- return Item.egg.shiftedIndex;
- }
- public int getRenderType()
- {
- return 27;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment