chenxin
2020-11-18 c1de51124dcaf0311c715273d895734cabb2227c
Assets/Scripts/Net/NetExtends/Table.cs
@@ -957,7 +957,7 @@
        public List<int> target_type;
        
        // buff效果
        public List<int> buff_effect;
        public List<float> buff_effect;
        
        // 生命周期
        public int scope;
@@ -990,7 +990,7 @@
            _endless_buff.id = int.Parse(GameUtils.GetString(item[index++].ToString())); 
            _endless_buff.name = GameUtils.GetString(item[index++].ToString()); 
            _endless_buff.target_type = GameUtils.GetIntList(item[index++]); 
            _endless_buff.buff_effect = GameUtils.GetIntList(item[index++]);
            _endless_buff.buff_effect = GameUtils.GetFloatList(item[index++]);
            _endless_buff.scope = int.Parse(GameUtils.GetString(item[index++].ToString())); 
            _endless_buff.brief = GameUtils.GetString(item[index++].ToString()); 
            _endless_buff.down_level = int.Parse(GameUtils.GetString(item[index++].ToString()));