chore: 减少肉鸽插件load_params log输出

This commit is contained in:
status102
2025-02-05 17:20:08 +08:00
parent c08f38eb2e
commit bad87d0d5e
5 changed files with 0 additions and 9 deletions

View File

@@ -14,7 +14,6 @@
bool asst::RoguelikeRoutingTaskPlugin::load_params(const json::value& params)
{
LogTraceFunction;
const std::string& theme = m_config->get_theme();
// 本插件暂处于实验阶段,仅用于萨卡兹肉鸽

View File

@@ -8,8 +8,6 @@
bool asst::RoguelikeDifficultySelectionTaskPlugin::load_params([[maybe_unused]] const json::value& params)
{
LogTraceFunction;
// 集成战略 <傀影与猩红孤钻> 的难度选项没有数字标注,暂不支持难度选择功能
if (m_config->get_theme() == RoguelikeTheme::Phantom) {
return false;

View File

@@ -6,8 +6,6 @@
bool asst::RoguelikeInputSeedTaskPlugin::load_params([[maybe_unused]] const json::value& params)
{
LogTraceFunction;
// 萨卡兹种子刷钱
if (m_config->get_theme() == RoguelikeTheme::Sarkaz && params.get("start_with_seed", false)) {
RoguelikeStageEncounter.set_event(m_config->get_theme(), m_config->get_mode(), "相遇", 3, 4);

View File

@@ -7,8 +7,6 @@
bool asst::RoguelikeIterateDeepExplorationPlugin::load_params([[maybe_unused]] const json::value& params)
{
LogTraceFunction;
auto iterateDE = params.find<bool>("deep_exploration_auto_iterate");
return m_config->get_mode() == RoguelikeMode::Exploration && iterateDE.value_or(false);
}

View File

@@ -7,8 +7,6 @@
bool asst::RoguelikeIterateMonthlySquadPlugin::load_params([[maybe_unused]] const json::value& params)
{
LogTraceFunction;
m_checkComms = params.find<bool>("monthly_squad_check_comms").value_or(false);
auto iterateMS = params.find<bool>("monthly_squad_auto_iterate");