From 24064f4bdc1dc5ca114c88b4c5d803ee4fde6612 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期六, 19 一月 2019 19:55:19 +0800
Subject: [PATCH] 5722 【后端】【1.5】跨服BOSS开发(找不到NPC报错防范)

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerCrossRealmPK.py |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerCrossRealmPK.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerCrossRealmPK.py
index 0629b71..226837f 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerCrossRealmPK.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerCrossRealmPK.py
@@ -156,7 +156,7 @@
         DR_GetCrossPKAward(curPlayer, zoneID, seasonID, eventName, True, mailDetail)
         
     # 查询 GameServer 玩家赛季排名
-    if not curPlayer.NomalDictGetProperty(ChConfig.Def_PDict_CrossPK_SeasonAwardState):
+    if not curPlayer.NomalDictGetProperty(ChConfig.Def_PDict_CrossPK_SeasonAwardState) and playerDanLV:
         OnQueryCrossPKSeasonOrderAward(curPlayer, zoneID, seasonID, True)
         
     # 重置状态
@@ -461,6 +461,10 @@
         
     elif awardType == 4:
         GameWorld.DebugLog("玩家领取赛季结算奖励!", playerID)
+        totalScore = curPlayer.NomalDictGetProperty(ChConfig.Def_PDict_CrossPK_TotalScore)
+        if not totalScore:
+            GameWorld.DebugLog("无赛季积分无法领取奖励!", playerID)
+            return
         if GameWorld.GetGameWorld().GetGameWorldDictByKey(ShareDefine.Def_Notify_WorldKey_CrossPKSeasonState) != 2:
             GameWorld.DebugLog("非赛季结算阶段,不可领取!", playerID)
             return

--
Gitblit v1.8.0