This commit is contained in:
DESKTOP-SAJ6RKV\Administrator 2025-06-21 01:41:42 +08:00
parent 45eff0c37f
commit 7dd6d09407
2 changed files with 7 additions and 3 deletions

View File

@ -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,

View File

@ -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);
}
}