if(rp == null)
return;
activeChar.unregisterRecipeList(_recipeID);
RecipeBookItemList response = new RecipeBookItemList(rp.isDwarvenRecipe(), activeChar.getMaxMp());
if(rp.isDwarvenRecipe())
{
response.addRecipes(activeChar.getDwarvenRecipeBook());
}
else
{
response.addRecipes(activeChar.getCommonRecipeBook());
}
activeChar.sendPacket(response);
}
}