1
This commit is contained in:
parent
45eff0c37f
commit
7dd6d09407
@ -1156,11 +1156,11 @@ namespace GameLogic
|
||||
GameEndData gameEndData = new GameEndData()
|
||||
{
|
||||
m_DzzwPlayerName = dzzwPlayerName,
|
||||
m_DzzwIcon = sbyrPlayer == null ? null : sbyrPlayer.protCustMessageData.imgURL,
|
||||
m_DzzwIcon = GetDzzwPlayer() == null ? null : GetDzzwPlayer().protCustMessageData.imgURL,
|
||||
m_TzhsPlayerName = tzhsPlayerName,
|
||||
m_TzhsIcon = GetTzhsPlayer() == null ? null : GetTzhsPlayer().protCustMessageData.imgURL,
|
||||
m_SbyrPlayerName = sbyrPlayerName,
|
||||
m_SbyrIcon = sbyrPlayer.protCustMessageData.imgURL,
|
||||
m_SbyrIcon = sbyrPlayer == null ? null : sbyrPlayer.protCustMessageData.imgURL,
|
||||
m_ZjgxPlayerName = zjgxPlayerName,
|
||||
m_ZjgxIcon = topPlayer.protCustMessageData.imgURL,
|
||||
m_WinPlayerName = winActorPlayerName,
|
||||
|
@ -91,8 +91,12 @@ namespace GameLogic
|
||||
AsyncImageDownload.Instance.SetAsyncImage(gameEndData.m_TzhsIcon, m_rimg_TzhsPlayerIcon);
|
||||
|
||||
}
|
||||
if (gameEndData.m_DzzwIcon != null)
|
||||
{
|
||||
AsyncImageDownload.Instance.SetAsyncImage(gameEndData.m_DzzwIcon, m_rimg_DzzwPlayerIcon);
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user