【公会】公会成员信息点开报错

dev_chengFeng
jiaoyangna 2020-07-13 16:46:59 +08:00
parent f80ac29435
commit d16ecd259a
1 changed files with 2 additions and 3 deletions

View File

@ -102,7 +102,7 @@ function GuildMemberInfoPopup:BindEvent()
PopupTipPanel.ShowTip(ActTimeCtrlManager.GetFuncTip(FUNCTION_OPEN_TYPE.GOODFRIEND))
return
end
if GoodFriendManager.IsInBlackList(this._PlayerId) then
if GoodFriendManager.IsInBlackList(this._MemId) then
PopupTipPanel.ShowTip(Language[10817])
return
end
@ -292,12 +292,11 @@ function this.FormationAdapter(teamInfo)
local frameBtn = Util.GetGameObject(this.Demons[hero.position], "frame")
local heroData = {}
Util.AddOnceClick(frameBtn, function()
NetManager.ViewHeroInfoRequest(this._PlayerId,hero.heroid,function(msg)
NetManager.ViewHeroInfoRequest(this._MemId,hero.heroid,function(msg)
heroData= GoodFriendManager.GetHeroDatas(msg.hero,msg.force,msg.SpecialEffects,msg.guildSkill)
GoodFriendManager.InitEquipData(msg.equip,heroData)--HeroManager.GetSingleHeroData(heroData.dynamicId)
UIManager.OpenPanel(UIName.RoleInfoPopup, heroData,true)
end)
end)
end
end