From fb96193c327bcd8bca652018034f457d7ce6bf9b Mon Sep 17 00:00:00 2001 From: xdh <xiefantasy@qq.com> Date: 星期二, 11 六月 2019 20:38:07 +0800 Subject: [PATCH] 7203 【2.0】【后端】周卡、月卡功能 --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py index 0101a93..f12cf73 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py @@ -5115,10 +5115,11 @@ GoldInvestType_Gold, # 仙玉投资 GoldInvestType_Gold2, # 仙玉投资2 GoldInvestType_Gold3, # 仙玉投资3 -) = range(1,5+1) +GoldInvestType_Week, # 周卡投资 +) = range(1,6+1) #可以循环投资的类型 -CanRepeatInvestType = [GoldInvestType_Month, GoldInvestType_VIP] +CanRepeatInvestType = [GoldInvestType_Week, GoldInvestType_Month, GoldInvestType_VIP] #仙玉投资类型 InvestGoldTypeList = [GoldInvestType_Gold, GoldInvestType_Gold2, GoldInvestType_Gold3] -- Gitblit v1.8.0