From 5dd061bcb59171f6d2da96fdb3f1ada5a44119f2 Mon Sep 17 00:00:00 2001
From: xdh <xiefantasy@qq.com>
Date: 星期三, 07 十一月 2018 11:35:04 +0800
Subject: [PATCH] 4612 【后端】【1.2.0】加成BUFF只在世界等级这个功能开放后才有

---
 ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerXMZZ.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerXMZZ.py b/ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerXMZZ.py
index 75f7fc5..21447fc 100644
--- a/ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerXMZZ.py
+++ b/ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerXMZZ.py
@@ -694,7 +694,7 @@
                 aboveList2.append(playerID)
         GameWorld.DebugLog('    筛选对手 myPower=%s,underList1=%s, aboveList1=%s,underList2=%s, aboveList2=%s' % (myPower, underList1, aboveList1, underList2, aboveList2), myPlayerID)
 
-        if conWinCnt % 5 == 0: #每5个匹配战力低的对手
+        if conWinCnt % 5 == 0 or conWinCnt <= IpyGameDataPY.GetFuncCfg('XMZZPKPowerRange', 3): #每5个匹配战力低的对手
             if underList1:
                 pkPlayerID = underList1[0]
             elif underList2:

--
Gitblit v1.8.0