From 4e1ba1b146b389e6bb0fdf84ed09c751688b43a9 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期六, 16 一月 2021 18:19:13 +0800
Subject: [PATCH] 8691 【主干】GM后台增加流向查询(上架拍品增加记录流向类型);
---
ServerPython/CoreServerGroup/GameServer/Script/GameWorldLogic/CrossBoss.py | 2 +-
ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py | 4 +++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/ServerPython/CoreServerGroup/GameServer/Script/GameWorldLogic/CrossBoss.py b/ServerPython/CoreServerGroup/GameServer/Script/GameWorldLogic/CrossBoss.py
index f552695..20be5af 100644
--- a/ServerPython/CoreServerGroup/GameServer/Script/GameWorldLogic/CrossBoss.py
+++ b/ServerPython/CoreServerGroup/GameServer/Script/GameWorldLogic/CrossBoss.py
@@ -393,7 +393,7 @@
for playerID in killerIDList:
killer = GameWorld.GetPlayerManager().FindPlayerByID(playerID)
if not killer:
- GameWorld.ErrLog("击杀跨服boss时主服玩家不在线, playerID=%s,mapID=%s,bossID=%s" % (playerID, mapID, bossID))
+ #GameWorld.ErrLog("击杀跨服boss时主服玩家不在线, playerID=%s,mapID=%s,bossID=%s" % (playerID, mapID, bossID))
#DataRecordPack.SendEventPack("CrossBoss_Error", {"PlayerID":playerID, "Error":"MainServerOffline"})
killTime = int(time.time())
PyGameData.g_unNotifyKillCrossBossDict[playerID] = [killTime, mapID, bossID]
diff --git a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py
index 127debf..9fe2b72 100644
--- a/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py
+++ b/ServerPython/ZoneServerGroup/map1_8G/MapServer/MapServerData/Script/ChConfig.py
@@ -5000,7 +5000,8 @@
ItemDel_LingQiEquipBreak, # 灵器突破 40
ItemDel_HorsePetAwake, # 骑宠觉醒
ItemDel_ActivityPlace, # 活跃放置
-) = range(2000, 2000 + 43)
+ItemDel_AuctionHouse, # 拍卖
+) = range(2000, 2000 + 44)
# 物品扣除类型对应信息 {类型:eventName, ...}
ItemDelTypeDict = {
@@ -5047,6 +5048,7 @@
ItemDel_LingQiEquipBreak:"LingQiEquipBreak",
ItemDel_HorsePetAwake:"HorsePetAwake",
ItemDel_ActivityPlace:"ActivityPlace",
+ ItemDel_AuctionHouse:"AuctionHouse",
}
##==================================================================================================
--
Gitblit v1.8.0