From b6be91d3e7393bcbc4e709a320ccd0f27693e66d Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期二, 03 十一月 2020 11:45:49 +0800
Subject: [PATCH] 4840 【BT】坐骑生命显示格式错误(修改发包A5 27 坐骑提升 #tagCMHorseUp 使用个数为WORD;修改收包A3 01 坐骑培养信息 #tagTrainHorseData 吃丹数为DWORD);
---
ServerPack/GameServerPack/HA9_Function/BossShuntLineStateInfo.h | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/ServerPack/GameServerPack/HA9_Function/BossShuntLineStateInfo.h b/ServerPack/GameServerPack/HA9_Function/BossShuntLineStateInfo.h
index 537d485..bc38199 100644
--- a/ServerPack/GameServerPack/HA9_Function/BossShuntLineStateInfo.h
+++ b/ServerPack/GameServerPack/HA9_Function/BossShuntLineStateInfo.h
@@ -3,8 +3,9 @@
struct tagGCBossShuntLineState
{
DWORD BossID; // bossID
- BYTE DeadLineCount;
- BYTE DeadLineList[DeadLineCount]; // 已死亡的线路列表
+ BYTE LineCount;
+ BYTE LineIDList[LineCount]; // 线路ID列表
+ BYTE StateList[LineCount]; // 对应状态列表, 0-被击杀,1-活着
};
struct tagGCBossShuntLineStateInfo
--
Gitblit v1.8.0