{
activeChar.getTransaction().cancel();
}
if(activeChar.getCreateList() == null)
{
activeChar.setCreateList(new L2ManufactureList());
}
activeChar.setPrivateStoreType(L2Player.STORE_PRIVATE_NONE);
activeChar.standUp();
activeChar.broadcastUserInfo(true);
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));