@Override
 public void dropFewItems(boolean isHitByPlayer, int looting, List<EntityItem> drops) {
   super.dropFewItems(isHitByPlayer, looting, drops);
   if (this.entity.getSaddled()) {
     this.entity.dropItem(Items.saddle, 1);
   }
   if (entity.isBurning()) {
     for (EntityItem i : drops) {
       if (i.getEntityItem().getItem() == Items.porkchop) {
         i.setEntityItemStack(new ItemStack(Items.cooked_porkchop, i.getEntityItem().stackSize));
       }
     }
   }
 }