From 418608a26001a7d183e08fe1304719c54a50d86d Mon Sep 17 00:00:00 2001
From: client_linchunjie <461730578@qq.com>
Date: 星期三, 31 十月 2018 14:18:53 +0800
Subject: [PATCH] 4492 【1.2】全民冲榜删除无用字段

---
 Core/GameEngine/Model/Config/OSCBillTagAwardConfig.cs |   23 ++++++++++-------------
 1 files changed, 10 insertions(+), 13 deletions(-)

diff --git a/Core/GameEngine/Model/Config/OSCBillTagAwardConfig.cs b/Core/GameEngine/Model/Config/OSCBillTagAwardConfig.cs
index 203b4dd..4688ae8 100644
--- a/Core/GameEngine/Model/Config/OSCBillTagAwardConfig.cs
+++ b/Core/GameEngine/Model/Config/OSCBillTagAwardConfig.cs
@@ -1,6 +1,6 @@
 锘�//--------------------------------------------------------
 //    [Author]:			绗簩涓栫晫
-//    [  Date ]:		   Monday, March 05, 2018
+//    [  Date ]:		   Wednesday, October 31, 2018
 //--------------------------------------------------------
 
 using UnityEngine;
@@ -11,11 +11,10 @@
     
 	public partial class OSCBillTagAwardConfig : ConfigBase {
 
-		public int ID { get ; private set ; }
-		public int RangListType { get ; private set ; }
-		public int Condition { get ; private set ; }
+		public int ID { get ; private set ; }
+		public int RangListType { get ; private set ; }
+		public int Condition { get ; private set ; }
 		public string Gift { get ; private set; } 
-		public string Tip { get ; private set; } 
 
 		public override string getKey()
         {
@@ -25,15 +24,13 @@
 		public override void Parse() {
 			try
             {
-                ID=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0; 
-			
-				RangListType=IsNumeric(rawContents[1]) ? int.Parse(rawContents[1]):0; 
-			
-				Condition=IsNumeric(rawContents[2]) ? int.Parse(rawContents[2]):0; 
-			
+                ID=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0; 
+			
+				RangListType=IsNumeric(rawContents[1]) ? int.Parse(rawContents[1]):0; 
+			
+				Condition=IsNumeric(rawContents[2]) ? int.Parse(rawContents[2]):0; 
+			
 				Gift = rawContents[3].Trim();
-			
-				Tip = rawContents[4].Trim();
             }
             catch (Exception ex)
             {

--
Gitblit v1.8.0