From 5fad96c186ea82bf6aa105824023fc1077ce64cd Mon Sep 17 00:00:00 2001
From: client_Wu Xijin <364452445@qq.com>
Date: 星期六, 16 二月 2019 16:25:46 +0800
Subject: [PATCH] 6197 【前端】【1.6】跨服匹配添加机器人
---
Core/GameEngine/Model/Config/CrossServerArenaConfig.cs | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/Core/GameEngine/Model/Config/CrossServerArenaConfig.cs b/Core/GameEngine/Model/Config/CrossServerArenaConfig.cs
index 0c445ef..8d7ce52 100644
--- a/Core/GameEngine/Model/Config/CrossServerArenaConfig.cs
+++ b/Core/GameEngine/Model/Config/CrossServerArenaConfig.cs
@@ -1,6 +1,6 @@
锘�//--------------------------------------------------------
// [Author]: Fish
-// [ Date ]: Thursday, February 14, 2019
+// [ Date ]: Saturday, February 16, 2019
//--------------------------------------------------------
using System.Collections.Generic;
@@ -18,6 +18,7 @@
public readonly int DanType;
public readonly string IconKey;
public readonly int LVUpScore;
+ public readonly int robotProbability;
public CrossServerArenaConfig()
{
@@ -38,6 +39,8 @@
IconKey = tables[3];
int.TryParse(tables[4],out LVUpScore);
+
+ int.TryParse(tables[5],out robotProbability);
}
catch (Exception ex)
{
--
Gitblit v1.8.0