282 查看他人-客户端  如果选了无坐骑,被别人查看时,默认显示id为1的坐骑
1个文件已修改
5 ■■■■■ 已修改文件
Main/System/OtherPlayerDetail/OtherPlayerDetailWin.cs 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Main/System/OtherPlayerDetail/OtherPlayerDetailWin.cs
@@ -169,9 +169,10 @@
        imgHorseBG.SetActive(horseData != null);
        if (horseData != null)
        {
            txtHorseLV.text = Language.Get("Horse8", horseData == null ? 0 : horseData.ClassLV, horseData == null ? 0 : horseData.LV);
            horseController.Create(horseSkinID, 0, 0.6f);
            txtHorseLV.text = Language.Get("Horse8", horseData.ClassLV, horseData.LV);
            horseController.Create(horseSkinID <= 0 ? 1 : horseSkinID, scale: 0.6f);
        }
    }
    private void DisplayCard(List<OtherPlayerDetailManager.RolePlusData.HeroData> heros)