protected void runImpl()
{
L2PcInstance activeChar = getClient().getActiveChar();
if (activeChar != null)
{
L2RecipeList rp = RecipeController.getInstance().getRecipeList(_recipeID-1);
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);