From 2a6bacedea0c4d6d49efcca5d0c56b7aa6e33adc Mon Sep 17 00:00:00 2001 From: xdh <xiefantasy@qq.com> Date: 星期一, 19 十一月 2018 14:45:39 +0800 Subject: [PATCH] 2397 【BUG】【1.2】【1.3】符印背包满的情况下合成符印,扣除符印融合石没合成符印,双属性符印升级后分解没返还符印融合石 --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py index 0778e33..f4d4676 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py @@ -4470,7 +4470,8 @@ ( Def_VerFix_ChatBubbleBox, # 1.2版本购买VIP礼包可获得激活气泡框道具,针对已购买过VIP礼包的老号处理; Def_VerFix_CTGDoublePrize, # 1.2版本开放首充双倍,重置老号充值ID对应累计充值次数; -) = range(2) +Def_VerFix_RuneSource, # 修复老号双属性符印的获取途径; +) = range(3) ##================================================================================================== #游戏消费点类型定义 @@ -5109,3 +5110,10 @@ EquipGroupType_Armor = '1' # 防具套装 EquipGroupType_Relics = '2' # 仙器套装 + +# 符印来源类型 +( +Rune_Source_Unkown, # 老号未知 0 +Rune_Source_Default, # 默认 1 +Item_Source_Compound, # 符印合成 2 +) = range(3) \ No newline at end of file -- Gitblit v1.8.0