Răsfoiți Sursa

修复不能同时导出客户端配置表和服务端配置表的bug (#138)

ks 6 ani în urmă
părinte
comite
27dcebebf5

+ 4 - 4
Unity/Assets/Editor/ExcelExporterEditor/ExcelExporterEditor.cs

@@ -197,10 +197,10 @@ public class ExcelExporterEditor : EditorWindow
 			string oldMD5 = this.md5Info.Get(fileName);
 			string md5 = MD5Helper.FileMD5(filePath);
 			this.md5Info.Add(fileName, md5);
-			if (md5 == oldMD5)
-			{
-				continue;
-			}
+			// if (md5 == oldMD5)
+			// {
+			// 	continue;
+			// }
 
 			Export(filePath, exportDir);
 		}