From a49287c1591671d95952114f04db742c1507de13 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期二, 20 八月 2024 15:01:53 +0800
Subject: [PATCH] 10223 10238 10241 【越南】【砍树】【主干】【港台】仙匣秘境、骑宠养成、古宝养成增加可配置是否关联跨服活动;

---
 ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerActGubao.py |   13 ++++++++-----
 1 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerActGubao.py b/ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerActGubao.py
index 2e1255d..1e8006c 100644
--- a/ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerActGubao.py
+++ b/ServerPython/CoreServerGroup/GameServer/Script/Player/PlayerActGubao.py
@@ -132,12 +132,15 @@
     playerName = curPlayer.GetName()
     job = curPlayer.GetJob()
     realmLV = curPlayer.GetOfficialRank()
-    _, updScore = dataMsg
+    _, updScore, isRelationCrossAct = dataMsg
     
-    #同步跨服
-    playerInfo = {"playerID":playerID, "playerName":playerName, "accID":accID, "job":job, "realmLV":realmLV,
-                  "playerScore":updScore}
-    SyncGubaoToCrossServer(curPlayer, playerInfo)
+    # 仙盟榜...
+    
+    if isRelationCrossAct:
+        #同步跨服
+        playerInfo = {"playerID":playerID, "playerName":playerName, "accID":accID, "job":job, "realmLV":realmLV,
+                      "playerScore":updScore}
+        SyncGubaoToCrossServer(curPlayer, playerInfo)
     return
 
 def SyncGubaoToCrossServer(curPlayer, playerInfo):

--
Gitblit v1.8.0