// Token: 0x06014308 RID: 82696 RVA: 0x00524100 File Offset: 0x00522300
        private void ThearchyUIController_OnStartThearchyLevel(ConfigDataThearchyTrialLevelInfo levelInfo)
        {
            if (!BJLuaObjHelper.IsSkipLuaHotfix && this.TryInitHotFix("") && this.m_ThearchyUIController_OnStartThearchyLevelConfigDataThearchyTrialLevelInfo_hotfix != null)
            {
                this.m_ThearchyUIController_OnStartThearchyLevelConfigDataThearchyTrialLevelInfo_hotfix.call(new object[]
                {
                    this,
                    levelInfo
                });
                return;
            }
            BJLuaObjHelper.IsSkipLuaHotfix = false;
            ProjectLPlayerContext projectLPlayerContext = GameManager.Instance.PlayerContext as ProjectLPlayerContext;
            int num = projectLPlayerContext.CanAttackThearchyLevel(levelInfo.ID);

            if (num == 0)
            {
                WorldUITask.StartBattleHappening(BattleType.ThearchyTrial, levelInfo.ID);
            }
            else
            {
                WorldUITask.HandleAttackFailResult(num, this.m_currIntent);
            }
        }