|
@@ -14,7 +14,7 @@ namespace GFGGame
|
|
|
private UI_LeagueAnsweringUI _ui;
|
|
|
private EffectUI _effectUI1;
|
|
|
private EffectUI _effectUI2;
|
|
|
- private List<long> _memberIds;
|
|
|
+ private List<long> _memberIds; //该玩家id列表,会按照答题数量降序排列
|
|
|
|
|
|
public override void Dispose()
|
|
|
{
|
|
@@ -389,7 +389,7 @@ namespace GFGGame
|
|
|
RoleInfoManager.Instance.UpdateHeadWithLv(item.m_comHead, roleInfo.headId, roleInfo.headBorderId, roleInfo.roleLv);
|
|
|
item.m_txtName.text = roleInfo.roleName;
|
|
|
int roldRank = _memberIds.IndexOf(roleInfo.roleId);
|
|
|
- item.m_c1.selectedIndex = roldRank < 3 && LeagueDataManager.Instance.ListAnsweringDatas[roleInfo.roleId] > 0 ? roldRank : 3;
|
|
|
+ item.m_c1.selectedIndex = roldRank < 3 && roldRank > 0 ? roldRank : 3;
|
|
|
string content = "";
|
|
|
for (int i = 0; i < chatData.Content.Length; i++)
|
|
|
{
|