少年修仙传客户端代码仓库
client_Wu Xijin
2019-02-20 a87120c155c48fa45b20a97c1a58bdbeb77318b7
Fight/GameActor/GA_Hero.cs
@@ -198,7 +198,7 @@
        ItemModel _itemModel = null;
        // 先取得衣服的阶数
        _itemModel = _equipModel.GetItemModelByIndex((int)RoleEquipType.Clothes);
        _itemModel = _equipModel.GetItemByIndex((int)RoleEquipType.Clothes);
        if (_itemModel == null)
        {
            return;
@@ -208,7 +208,7 @@
        for (int i = _start; i <= _end; ++i)
        {
            _itemModel = _equipModel.GetItemModelByIndex(i);
            _itemModel = _equipModel.GetItemByIndex(i);
            if (_itemModel == null)
            {
@@ -621,7 +621,7 @@
            SinglePackModel _horsePackModel = _packModel.GetSinglePackModel(PackType.Equip);
            if (_horsePackModel != null)
            {
                ItemModel _horseItem = _horsePackModel.GetItemModelByIndex((int)RoleEquipType.mount);
                ItemModel _horseItem = _horsePackModel.GetItemByIndex((int)RoleEquipType.mount);
                SwitchHorse((uint)_horseItem.itemId);
            }
        }