From f724b8e55ee83824c3231bd955785b839f88be63 Mon Sep 17 00:00:00 2001 From: hxp <ale99527@vip.qq.com> Date: 星期四, 16 一月 2020 16:28:50 +0800 Subject: [PATCH] 8369 境界修改(法宝被动技能改为激活即生效,不需要再设置) --- ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerPrestigeSys.py | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerPrestigeSys.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerPrestigeSys.py index 3f73b84..d42170a 100644 --- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerPrestigeSys.py +++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerPrestigeSys.py @@ -28,6 +28,7 @@ import PlayerSuccess import ChEquip import PlayerBillboard +import PassiveBuffEffMng import EventShell import DataRecordPack import SkillCommon @@ -205,8 +206,9 @@ else: PlayerControl.WorldNotify(0, 'RealmUpSuccess', [curPlayer.GetName(), curPlayer.GetID(), nextRealmLv]) - SkillCommon.GivePlayerSkillByJobSkill(curPlayer, nextRealmIpyData.GetLearnSkillIDInfo()) - + if SkillCommon.GivePlayerSkillByJobSkill(curPlayer, nextRealmIpyData.GetLearnSkillIDInfo()): + PassiveBuffEffMng.GetPassiveEffManager().RegistPassiveEffSet(curPlayer) + addFreePoint = nextRealmIpyData.GetAddFreePoint() if addFreePoint: updFreePoint = curPlayer.GetFreePoint() + addFreePoint -- Gitblit v1.8.0