From 6c413acde628cb24547ccad17e3c6359c86964cc Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期二, 10 二月 2026 10:00:38 +0800
Subject: [PATCH] 66 【公会】基础主体-服务端(优化成员基础信息变更时同步,除战力同步CD60秒,其他属性CD2秒;)
---
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerActLianqi.py | 11 +++++------
1 files changed, 5 insertions(+), 6 deletions(-)
diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerActLianqi.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerActLianqi.py
index b03df1e..ddaf97f 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerActLianqi.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/Player/PlayerActLianqi.py
@@ -20,7 +20,6 @@
import IpyGameDataPY
import NetPackCommon
import ChPyNetSendPack
-import CrossRealmPlayer
#import PlayerZhanling
import ItemControler
import ItemCommon
@@ -56,7 +55,7 @@
playerID = curPlayer.GetPlayerID()
- actInfo = CrossRealmPlayer.GetPlayerCrossActInfo(curPlayer, ShareDefine.CrossActName_Lianqi)
+ actInfo = {}#CrossRealmPlayer.GetPlayerCrossActInfo(curPlayer, ShareDefine.CrossActName_Lianqi)
cfgID = actInfo.get(ShareDefine.ActKey_CfgID, 0)
actID = actInfo.get(ShareDefine.ActKey_ID, 0)
state = actInfo.get(ShareDefine.ActKey_State, 0)
@@ -90,8 +89,8 @@
ReStartGame(curPlayer, isNotify=False)
Sync_CrossActLianqiActionInfo(curPlayer)
Sync_LianqiPlayerInfo(curPlayer)
- else:
- CrossRealmPlayer.NotifyCrossActEnd(curPlayer, ShareDefine.CrossActName_Lianqi)
+ #else:
+ # CrossRealmPlayer.NotifyCrossActEnd(curPlayer, ShareDefine.CrossActName_Lianqi)
return True
@@ -179,7 +178,7 @@
OPValue3 = clientData.OPValue3
if OPType not in [4]:
- actInfo = CrossRealmPlayer.GetPlayerCrossActInfo(curPlayer, ShareDefine.CrossActName_Lianqi)
+ actInfo = {}#CrossRealmPlayer.GetPlayerCrossActInfo(curPlayer, ShareDefine.CrossActName_Lianqi)
if not actInfo:
GameWorld.DebugLog("非炼器活动中,无法操作! OPType=%s" % OPType, playerID)
return
@@ -560,7 +559,7 @@
def Sync_CrossActLianqiActionInfo(curPlayer):
## 通知活动信息
- actInfo = CrossRealmPlayer.GetPlayerCrossActInfo(curPlayer, ShareDefine.CrossActName_Lianqi)
+ actInfo = {}#CrossRealmPlayer.GetPlayerCrossActInfo(curPlayer, ShareDefine.CrossActName_Lianqi)
if not actInfo:
return
--
Gitblit v1.8.0