From 302d2582109d6cdc666306b560f4a842995085de Mon Sep 17 00:00:00 2001
From: xdh <xiefantasy@qq.com>
Date: 星期二, 09 十月 2018 19:59:49 +0800
Subject: [PATCH] 3951 【后端】【1.1.0】创角名字长度限制修改

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py
index e05a9b9..b48749c 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py
@@ -364,8 +364,8 @@
 
 def GetItemPackType(itemType, defaultPack=IPY_GameWorld.rptItem):
     ## 获取物品类型对应存放的默认背包类型
-    if defaultPack == ShareDefine.rptTreasure:
-        #寻宝背包不做处理
+    if defaultPack in [ShareDefine.rptTreasure, ShareDefine.rptTempItem]:
+        #寻宝背包、临时背包不做处理
         return defaultPack
     for pack, itemTypeList in Def_PackItemTypeList_Dict.items():
         if itemType in itemTypeList:
@@ -1227,7 +1227,7 @@
 ) = range( 0, Def_AutoAtkSkillType )
 
 #技能类型
-Def_SkillType_Count = 23
+Def_SkillType_Count = 24
 (
    Def_SkillType_Special      ,  #特殊技能   0        
    Def_SkillType_Atk          ,  #攻击类   1
@@ -1252,6 +1252,7 @@
    Def_SkillType_AttrSkill,         # 属性类技能 20
    Def_SkillType_PassiveLstPlsBuff,  #被动触发持续增益类buff 21
    Def_SkillType_PassiveLstDepBuff,  #被动触发持续减益类buff 22
+   Def_SkillType_AttrSkillNoLearn,   # 可叠加的同类型ID属性类技能 不可学习 算属性直接取表 目前用于神兽技能 23
    
 ) = range( 0, Def_SkillType_Count )
 

--
Gitblit v1.8.0