From 7e74d638fb1e2d19d141b75d3c6bb1c28251300c Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期二, 04 一月 2022 15:02:54 +0800
Subject: [PATCH] 1111 【BT3_1.102.1】【BT4】【主干】【BT5】【bt5_1.101.1】【yn_1.0.1】修复跨服榜存储账号长度bug(name1、name2存储长度限制33)

---
 ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/GMT_QueryBillboard.py |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/GMT_QueryBillboard.py b/ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/GMT_QueryBillboard.py
index a7a5818..ecc05cc 100644
--- a/ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/GMT_QueryBillboard.py
+++ b/ServerPython/CoreServerGroup/GameServer/Script/GM/Commands/GMT_QueryBillboard.py
@@ -83,9 +83,10 @@
         #数据过大
         GMCommon.GMCommandResult(orderId, gmCmdDict, GMCommon.Def_MaxLimit)   
         return
-      
+    
+    backMsg = {"BillBoardType":billBoardType, "BillBoardInfo":billBoardInfo}
     #执行成功
-    GMCommon.GMCommandResult(orderId, gmCmdDict, GMCommon.Def_Success, billBoardInfo)        
+    GMCommon.GMCommandResult(orderId, gmCmdDict, GMCommon.Def_Success, backMsg)        
     return
 
     

--
Gitblit v1.8.0