From 11a8ef04dc70453203e1f1ab7b0bceffd6a7774a Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期五, 05 七月 2024 16:35:12 +0800
Subject: [PATCH] 10198 【香港】【越南】【主干】【砍树】【后端】BOSS凭证优化(优化凭证转化: 活动开始后到参与结束都不转化,包含活动开始参与前;)

---
 ServerPython/CoreServerGroup/GameServer/Script/ChMapToGamePyPack.py |    8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/ServerPython/CoreServerGroup/GameServer/Script/ChMapToGamePyPack.py b/ServerPython/CoreServerGroup/GameServer/Script/ChMapToGamePyPack.py
index 53677c0..18c736d 100644
--- a/ServerPython/CoreServerGroup/GameServer/Script/ChMapToGamePyPack.py
+++ b/ServerPython/CoreServerGroup/GameServer/Script/ChMapToGamePyPack.py
@@ -613,6 +613,7 @@
                   ("PlayerID", c_int),    #玩家ID
                   ("FindPlayerID", c_int),    #要查询的玩家ID
                   ("EquipClassLV", c_ubyte),    #大于0为查看指定境界阶装备信息,  0为查看默认信息
+                  ("CallMap", c_ubyte),    #是否需要通知地图
                   ]
 
     def __init__(self):
@@ -632,6 +633,7 @@
         self.PlayerID = 0
         self.FindPlayerID = 0
         self.EquipClassLV = 0
+        self.CallMap = 0
         return
 
     def GetLength(self):
@@ -646,14 +648,16 @@
                                 SubCmd:%s,
                                 PlayerID:%d,
                                 FindPlayerID:%d,
-                                EquipClassLV:%d
+                                EquipClassLV:%d,
+                                CallMap:%d
                                 '''\
                                 %(
                                 self.Cmd,
                                 self.SubCmd,
                                 self.PlayerID,
                                 self.FindPlayerID,
-                                self.EquipClassLV
+                                self.EquipClassLV,
+                                self.CallMap
                                 )
         return DumpString
 

--
Gitblit v1.8.0