From 1be5ab55feedb550beff7a04a3a1d2cf6396d8d0 Mon Sep 17 00:00:00 2001
From: client_Hale <339726288@qq.com>
Date: 星期四, 25 四月 2019 16:37:33 +0800
Subject: [PATCH] 382 对话配置表字段修改
---
Core/GameEngine/Model/Config/DialogConfig.cs | 13 +++++--------
1 files changed, 5 insertions(+), 8 deletions(-)
diff --git a/Core/GameEngine/Model/Config/DialogConfig.cs b/Core/GameEngine/Model/Config/DialogConfig.cs
index a949acf..15ff609 100644
--- a/Core/GameEngine/Model/Config/DialogConfig.cs
+++ b/Core/GameEngine/Model/Config/DialogConfig.cs
@@ -1,6 +1,6 @@
锘�//--------------------------------------------------------
// [Author]: Fish
-// [ Date ]: Thursday, February 14, 2019
+// [ Date ]: Thursday, April 25, 2019
//--------------------------------------------------------
using System.Collections.Generic;
@@ -15,7 +15,6 @@
public readonly int id;
public readonly int npcId;
- public readonly string icon;
public readonly string name;
public readonly string content;
public readonly int nextID;
@@ -35,15 +34,13 @@
int.TryParse(tables[1],out npcId);
- icon = tables[2];
+ name = tables[2];
- name = tables[3];
+ content = tables[3];
- content = tables[4];
+ int.TryParse(tables[4],out nextID);
- int.TryParse(tables[5],out nextID);
-
- int.TryParse(tables[6],out TalkID);
+ int.TryParse(tables[5],out TalkID);
}
catch (Exception ex)
{
--
Gitblit v1.8.0