From 6fc3b68b33214994b8aa4417cbd3064d182a4f6e Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期二, 30 十二月 2025 14:37:43 +0800
Subject: [PATCH] 415 【更新线上特殊处理】血量比例修改需要刷新装备

---
 ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py
index fa5bb2e..05254cb 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/DataRecordPack.py
@@ -255,6 +255,14 @@
     SendEventPack("CTGOK", dataDict, curPlayer)
     return
 
+def DR_FixVersion(curPlayer, fixName, fixDict):
+    ## 修正玩家数据版本流向
+    dataDict = {'PlayerID':curPlayer.GetPlayerID(), "PlayerName":curPlayer.GetPlayerName(), 
+                'AccID':curPlayer.GetAccID()}
+    dataDict.update(fixDict)
+    SendEventPack("FixVersion_%s" % fixName, dataDict, curPlayer)
+    return
+
 ## 玩家升级
 #  @param curPlayer: 玩家实例
 #  @param playerLV: 玩家等级

--
Gitblit v1.8.0