From fcd7122359f95c45e384ba040ef6fa28d280d2c4 Mon Sep 17 00:00:00 2001
From: hxp <ale99527@vip.qq.com>
Date: 星期二, 12 三月 2024 15:08:39 +0800
Subject: [PATCH] 10144 【越南】【砍树】【主干】充值表的RecordID 支持超过255

---
 ServerPack/MapServerPack/HA1_Sys/CoinToGoldCountInfo.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/ServerPack/MapServerPack/HA1_Sys/CoinToGoldCountInfo.h b/ServerPack/MapServerPack/HA1_Sys/CoinToGoldCountInfo.h
index 5eaa69f..69c4b5b 100644
--- a/ServerPack/MapServerPack/HA1_Sys/CoinToGoldCountInfo.h
+++ b/ServerPack/MapServerPack/HA1_Sys/CoinToGoldCountInfo.h
@@ -2,7 +2,7 @@
 
 struct	tagMCCoinToGoldCount
 {
-	BYTE		RecordID;
+	WORD		RecordID;
 	WORD		TodayPayCount; // 今日已购买次数
 	DWORD		TotalPayCount; // 累计总购买次数
 	WORD		WeekPayCount; // 周总购买次数
@@ -12,6 +12,6 @@
 struct	tagMCCoinToGoldCountInfo
 {
 	tagHead		Head;
-	BYTE		RecordCount;
+	WORD		RecordCount;
 	tagMCCoinToGoldCount		CTGCountInfoList[RecordCount];
 };

--
Gitblit v1.8.0