From 98b6279210e1fc65b0195e9a12b6c06729b1011c Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期四, 29 四月 2021 11:25:32 +0800
Subject: [PATCH] 5058 【主干】【gt_1.100.6】【BT2】同步脱机挂封包
---
ServerPython/CoreServerGroup/GameServer/Script/GameWorldLogic/CrossBillboard.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/ServerPython/CoreServerGroup/GameServer/Script/GameWorldLogic/CrossBillboard.py b/ServerPython/CoreServerGroup/GameServer/Script/GameWorldLogic/CrossBillboard.py
index b7926c8..9eb6861 100644
--- a/ServerPython/CoreServerGroup/GameServer/Script/GameWorldLogic/CrossBillboard.py
+++ b/ServerPython/CoreServerGroup/GameServer/Script/GameWorldLogic/CrossBillboard.py
@@ -73,13 +73,13 @@
cnt += 1
savaData += billboardData.getBuffer()
- GameWorld.Log("Save DBCrossBillboard cnt :%s" % cnt)
+ GameWorld.Log("Save DBCrossBillboard count :%s len=%s" % (cnt, len(savaData)))
return CommFunc.WriteDWORD(cntData, cnt) + savaData
# 从数据库载入数据
def LoadPyGameData(self, datas, pos, dataslen):
cnt, pos = CommFunc.ReadDWORD(datas, pos)
- GameWorld.Log("Load DBCrossBillboard cnt :%s" % cnt)
+ GameWorld.Log("Load DBCrossBillboard count :%s" % cnt)
for _ in xrange(cnt):
billboardData = PyGameDataStruct.tagDBCrossBillboard()
--
Gitblit v1.8.0