From f4331a5d6085d331a5a5b555f2c502bdc22a75bc Mon Sep 17 00:00:00 2001 From: MistEO Date: Wed, 4 May 2022 01:23:50 +0800 Subject: [PATCH] =?UTF-8?q?chore.=E8=A1=A5=E5=85=85=E4=B8=80=E4=BA=9B?= =?UTF-8?q?=E5=9F=BA=E5=BB=BA=E7=9A=84=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/MeoAssistant/InfrastProductionTask.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/MeoAssistant/InfrastProductionTask.cpp b/src/MeoAssistant/InfrastProductionTask.cpp index 4bbeb313c7..282d5c061a 100644 --- a/src/MeoAssistant/InfrastProductionTask.cpp +++ b/src/MeoAssistant/InfrastProductionTask.cpp @@ -199,8 +199,15 @@ size_t asst::InfrastProductionTask::opers_detect() --cur_available_num; continue; } + { + std::string skills_str = "["; + for (const auto& skill : cur_oper.skills) { + skills_str += skill.id + ", "; + } + skills_str += "]"; + Log.trace(skills_str, "mood", cur_oper.mood_ratio, "threshold", m_mood_threshold); + } // 心情过低的干员则不可用 - Log.trace("mood", cur_oper.mood_ratio, "threshold", m_mood_threshold); if (cur_oper.mood_ratio < m_mood_threshold) { //--cur_available_num; continue;