From 23e8ee01886faf8f1a77c79a2d93a52a860e6914 Mon Sep 17 00:00:00 2001 From: hch <305670599@qq.com> Date: 星期日, 24 八月 2025 22:41:12 +0800 Subject: [PATCH] 117 【武将】武将系统 - 重生 遣散 --- Main/System/Invest/InvestModel.cs | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Main/System/Invest/InvestModel.cs b/Main/System/Invest/InvestModel.cs index cebccca..161b1fb 100644 --- a/Main/System/Invest/InvestModel.cs +++ b/Main/System/Invest/InvestModel.cs @@ -116,7 +116,7 @@ items.Add(new Item() { id = itemArray[j][0], - countEx = (ulong)itemArray[j][1], + countEx = itemArray[j][1], bind = itemArray[j][2], }); } @@ -150,9 +150,9 @@ } //鑾峰緱鍗曟姇璧勭殑鎬绘敹鐩� - public ulong GetTotalIncome(int type) + public long GetTotalIncome(int type) { - ulong income = 0; + long income = 0; if (m_InvestItems.ContainsKey(type)) { var keyList = m_InvestItems[type].Keys.ToList(); -- Gitblit v1.8.0