Release v5.23.1 (#13760)

This commit is contained in:
uye
2025-08-17 20:16:30 +08:00
committed by GitHub
2 changed files with 10 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
## v5.23.0
## v5.23.1
### 夏活第二弹 | Highlight
@@ -36,6 +36,14 @@ Additionally~~though NiuNiu isnt quite sure what purpose it serves, but~~ man
以下是详细内容:
## v5.23.1
### 修复 | Fix
* 商店没钱了不会停止投资 @ABA2396
## v5.23.0
### 新增 | New
* 新保全作业 (#13754) @Saratoga-Official

View File

@@ -80,7 +80,7 @@ bool asst::RoguelikeInvestTaskPlugin::_run()
if (is_investment_available(image)) { // 检查是否处于可投资状态
const auto& wallet_ = get_wallet(image); // 获取当前钱包余额
const auto& deposit_ = get_deposit(image); // 获取当前存款
if (*wallet_ && *wallet_ == 0) { // 手头没钱了
if (wallet_ && *wallet_ == 0) { // 手头没钱了
Log.info(__FUNCTION__, "手头没钱了, 退出投资");
settlement(image);
break;