chore: Auto update by pre-commit hooks

https://github.com/MaaAssistantArknights/MaaAssistantArknights/actions/runs/20865488969
[skip changelog]
This commit is contained in:
github-actions[bot]
2026-01-09 21:04:51 +00:00
parent d25edcbbbd
commit 279d9092a4
7 changed files with 9 additions and 10 deletions

View File

@@ -364,7 +364,7 @@ For more details about auto-combat JSON, please refer to [Combat Operation Proto
For more details about Stationary Security Service JSON, please refer to [SSS Schema](./sss-schema.md)
- `ParadoxCopilot`
Automatically run Paradox Simulation operations
Automatically run Paradox Simulation operations
```json5
// Task parameters

View File

@@ -338,7 +338,7 @@ TaskId ASSTAPI AsstAppendTask(AsstHandle handle, const char* type, const char* p
保全駐在の自動操縦JSONの詳細については、[保全駐在API](./sss-schema.md)
- `ParadoxCopilot`
逆理演算の自動戦闘
逆理演算の自動戦闘
```json5
{

View File

@@ -588,7 +588,7 @@ Tag 等级(大于等于 3和对应的希望招募时限单位为分钟
保全作业 JSON 请参考 [保全派驻协议](./sss-schema.md)
- `ParadoxCopilot`
自动抄悖论模拟作业
自动抄悖论模拟作业
```json5
// Task parameters

View File

@@ -339,9 +339,8 @@ AsstTaskId ASSTAPI AsstAppendTask(AsstHandle handle, const char* type, const cha
保全作業 JSON 請參考 [3.7-保全派駐協議](./sss-schema.md)
- `ParadoxCopilot`
自動抄悖論模擬作業
自動抄悖論模擬作業
```json5
// Task parameters

View File

@@ -19,11 +19,11 @@
#include "Task/Interface/InfrastTask.h"
#include "Task/Interface/MallTask.h"
#include "Task/Interface/OperBoxTask.h"
#include "Task/Interface/ParadoxCopilotTask.h"
#include "Task/Interface/ReclamationTask.h"
#include "Task/Interface/RecruitTask.h"
#include "Task/Interface/RoguelikeTask.h"
#include "Task/Interface/SSSCopilotTask.h"
#include "Task/Interface/ParadoxCopilotTask.h"
#include "Task/Interface/SingleStepTask.h"
#include "Task/Interface/StartUpTask.h"
#include "Task/Interface/VideoRecognitionTask.h"

View File

@@ -18,9 +18,9 @@ class CopilotTask final : public InterfaceTask
public:
struct MultiCopilotConfig
{
std::string filename; // 文件名
std::string stage_name; // 关卡名
bool is_raid = false; // 是否是突袭
std::string filename; // 文件名
std::string stage_name; // 关卡名
bool is_raid = false; // 是否是突袭
MEO_JSONIZATION(filename, stage_name, MEO_OPT is_raid);
};

View File

@@ -1,8 +1,8 @@
#include "ParadoxCopilotTask.h"
#include "Config/Miscellaneous/CopilotConfig.h"
#include "Task/Miscellaneous/BattleProcessTask.h"
#include "Task/Miscellaneous/ParadoxRecognitionTask.h"
#include "Config/Miscellaneous/CopilotConfig.h"
#include "Task/ProcessTask.h"
#include "Utils/Logger.hpp"