From 90b098fe0b1219a4a2c23aef55a3e8366fd1fcdf Mon Sep 17 00:00:00 2001
From: chenxin <chenxin6991@163.com>
Date: Wed, 18 Nov 2020 12:29:52 +0800
Subject: [PATCH] 新增buff验证测试

---
 Assets/Scripts/Net/NetExtends/Table.cs |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Assets/Scripts/Net/NetExtends/Table.cs b/Assets/Scripts/Net/NetExtends/Table.cs
index ffe242e..da4917e 100644
--- a/Assets/Scripts/Net/NetExtends/Table.cs
+++ b/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())); 

--
Gitblit v1.9.1