From 4f2f03dba59e59672a0eb5333ca53eb0b84b3aa9 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期一, 08 十月 2018 15:05:51 +0800 Subject: [PATCH] 2091 【后端】优化拾取导致的报错; 去除国庆时部分玩家装备传奇属性bug的临时处理代码; --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py | 20 +++----------------- 1 files changed, 3 insertions(+), 17 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py index fc71c73..fb1a30c 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/ChPlayer.py @@ -62,7 +62,7 @@ import PlayerActivity import PlayerTeHui import FBCommon -import HighLadderTube +import PlayerBindJadeWheel import BossHurtMng import PlayerAction import PlayerAttrFruit @@ -543,6 +543,8 @@ PlayerDogz.OnPlayerLogin(curPlayer) # 骑宠 FamilyRobBoss.OnPlayerLogin(curPlayer) + # 绑玉转盘 + PlayerBindJadeWheel.OnDay(curPlayer) # 上线查询一次充值订单 curPlayer.SendDBQueryRecharge() @@ -4388,16 +4390,6 @@ PlayerControl.NotifyCode(curPlayer, "04BBF813-7A30-47A8-927DE1ACCC4F378E") return -#=============================================================================== -# isFreedomTransBuff = SkillCommon.GetPlayerBuffBySkillTypeID(curPlayer, ShareDefine.Def_FreedomTransBuffID) -# if not PlayerControl.IsPlayerInFight(curPlayer): -# -# if (transportType == ChConfig.Def_Transport_Type_BigMap) or (not isFreedomTransBuff): -# #传送支付处理 -# -# if not PayForTransport(curPlayer, transportType, isAutoBuy): -# return -#=============================================================================== #是任务传送,VIP等级不够,且传送符不足,不处理 if transportType == ChConfig.Def_Transport_Type_Mission and \ not TransportVipLvRestrict(curPlayer, transportType) and \ @@ -4499,12 +4491,6 @@ # @param transportType 传送类型 # @return 是否vip等级限制 def TransportVipLvRestrict(curPlayer, transportType): - - #大地图标记传送不能体验无限飞buff功能 - if transportType != ChConfig.Def_Transport_Type_BigMap: - if SkillCommon.GetPlayerBuffBySkillTypeID(curPlayer, ShareDefine.Def_FreedomTransBuffID): - #有无限飞buff - return True return PlayerVip.GetPrivilegeValue(curPlayer, ChConfig.VIPPrivilege_FreeTransport) -- Gitblit v1.8.0