// Token: 0x06012672 RID: 75378 RVA: 0x004B9BA8 File Offset: 0x004B7DA8
        protected void UpdateSelfRankInfo()
        {
            if (!BJLuaObjHelper.IsSkipLuaHotfix && this.TryInitHotFix("") && this.m_UpdateSelfRankInfo_hotfix != null)
            {
                this.m_UpdateSelfRankInfo_hotfix.call(new object[]
                {
                    this
                });
                return;
            }
            BJLuaObjHelper.IsSkipLuaHotfix = false;
            ProjectLPlayerContext projectLPlayerContext = GameManager.Instance.PlayerContext as ProjectLPlayerContext;
            string heroName = string.Empty;

            if (this.m_cachedRankList.Type == RankingListType.ChampionHero)
            {
                IConfigDataLoader  configDataLoader   = GameManager.Instance.ConfigDataLoader as IConfigDataLoader;
                ConfigDataHeroInfo configDataHeroInfo = configDataLoader.GetConfigDataHeroInfo(this.m_cachedRankList.ChampionHeroId);
                if (configDataHeroInfo != null)
                {
                    heroName = configDataHeroInfo.Name;
                }
            }
            this.SelfRankItemUICtrl.UpdateItemInfo(this.m_cachedRankList.Type, projectLPlayerContext.GetPlayerHeadIcon(), this.m_cachedRankList.CurrRank, projectLPlayerContext.GetPlayerLevel(), projectLPlayerContext.GetPlayerName(), this.m_cachedRankList.Score, heroName);
            this.SelfRankItemUICtrl.UpdateCompareInfo(this.m_cachedRankList.LastRank, this.m_cachedRankList.CurrRank);
        }