if(!activeChar.checksForShop(true))
{
activeChar.sendActionFailed();
return;
}
activeChar.sendPacket(new RecipeShopManageList(activeChar, true));
break;
}
case 51: // Создание магазина Dwarven Craft
{
if(!activeChar.checksForShop(true))
{
activeChar.sendActionFailed();
return;
}
if(activeChar.getCreateList() == null)
{
activeChar.setCreateList(new L2ManufactureList());
}
activeChar.setPrivateStoreType(L2Player.STORE_PRIVATE_NONE);
activeChar.standUp();
activeChar.broadcastUserInfo(true);
activeChar.sendPacket(new RecipeShopManageList(activeChar, false));
break;
}
case 96: // Quit Party Command Channel?
_log.info("96 Accessed");
break;