Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @Override
- public EntityAgeable createChild(EntityAgeable ageable)
- {
- if (!this.worldObj.isRemote)
- {
- EntityBabyChocobo entity = new EntityBabyChocobo(ageable.worldObj, this.getChocoboColor());
- System.out.println(this.worldObj.spawnEntityInWorld(entity));
- entity.setLocationAndAngles(this.posX, this.posY, this.posZ, this.rotationYaw, this.rotationPitch);
- return entity;
- }
- return null;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement