feat: 允许设置是否启用线索交流与赠送线索 (#15278)

* feat: 允许设置是否启用线索交流与赠送线索

* feat: ui 支持设置赠送线索,将借助战打 OF-1 的一日一次功能拆出来

* perf: 调整界面布局

* i18n: 漏了一个翻译

* chore: 简化代码

* docs: 补充文档
This commit is contained in:
uye
2026-01-03 00:04:10 +08:00
committed by GitHub
parent 0fd4b8185e
commit 215d76e38d
21 changed files with 184 additions and 76 deletions

View File

@@ -35,9 +35,14 @@ bool asst::InfrastReceptionTask::_run()
return false;
}
use_clue();
back_to_reception_main();
send_clue();
if (m_enable_clue_exchange) {
use_clue();
back_to_reception_main();
}
if (m_send_clue) {
send_clue();
}
if (need_exit()) {
return false;
@@ -50,8 +55,10 @@ bool asst::InfrastReceptionTask::_run()
return false;
}
use_clue();
back_to_reception_main();
if (m_enable_clue_exchange) {
use_clue();
back_to_reception_main();
}
if (need_exit()) {
return false;