From fe9b738b1cb89e3b4d320924fceef70a8e1f6fac Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期四, 04 三月 2021 14:24:50 +0800
Subject: [PATCH] 8650 【主干】【BT2】活动规则优化(多活动支持的改为单表模式,增加活动分组编号字段区分不同的活动编号;常规活动改为不受合服影响,合服活动独立出来;累计充值活动、集字活动适配为新模式 master冲突补同步);

---
 Tool/RobotTest/ConfigurationReader/ConfigIniReader.py |   11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)

diff --git a/Tool/RobotTest/ConfigurationReader/ConfigIniReader.py b/Tool/RobotTest/ConfigurationReader/ConfigIniReader.py
index afa4c07..36b9343 100644
--- a/Tool/RobotTest/ConfigurationReader/ConfigIniReader.py
+++ b/Tool/RobotTest/ConfigurationReader/ConfigIniReader.py
@@ -61,7 +61,16 @@
         self.ProcessFindTJGTime = config.GetIntValue( "ProcessFindTJGTime")
         self.ServerDBConfigPath = config.GetValue( "ServerDBConfigPath")
         self.StartRunTime = config.GetIntValue( "StartRunTime")
-        
+        self.AccountSource = config.GetIntValue( "AccountSource")
+        self.MaxPlayerCnt = config.GetIntValue( "MaxPlayerCnt")
+    
+    def GetMaxPlayerCnt(self):
+        return self.MaxPlayerCnt
+    
+    # 账号获取来源 0:自动生成, 1:取库中已有账号
+    def GetAccountSource(self):
+        return self.AccountSource
+    
     def GetIOThreadNum(self):
         return self.IOThreadNum
     

--
Gitblit v1.8.0