Exemple #1
0
    public void CheckAnnounceHomeReturn(int delivery_id)
    {
        //IL_006c: Unknown result type (might be due to invalid IL or missing references)
        //IL_0071: Expected O, but got Unknown
        if (m_compDeliveryId == 0)
        {
            DeliveryTable.DeliveryData deliveryTableData = Singleton <DeliveryTable> .I.GetDeliveryTableData((uint)delivery_id);

            if (deliveryTableData.IsClearDialogInGame() && !IsDeliveryExplore(deliveryTableData) && !IsDeliveryRush(deliveryTableData))
            {
                if (m_coroutine != null)
                {
                    this.StopCoroutine(m_coroutine);
                }
                if (deliveryTableData.IsEvent())
                {
                    m_compDeliveryId = delivery_id;
                }
                m_coroutine = this.StartCoroutine(CheckRequestHomeReturn());
            }
        }
    }