From 2c286a5f4158414dc3efc01355a9e04cbdff0e85 Mon Sep 17 00:00:00 2001 From: uye <99072975+ABA2396@users.noreply.github.com> Date: Fri, 7 Jun 2024 15:00:08 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E2=80=9Cdorm=5Fnotstationed=5Fenabled?= =?UTF-8?q?=E2=80=9D=E5=8F=82=E6=95=B0=E9=BB=98=E8=AE=A4=E5=80=BC=E9=94=99?= =?UTF-8?q?=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix #9282 --- src/MaaCore/Task/Interface/InfrastTask.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MaaCore/Task/Interface/InfrastTask.cpp b/src/MaaCore/Task/Interface/InfrastTask.cpp index baf44be06a..435a7bc6cf 100644 --- a/src/MaaCore/Task/Interface/InfrastTask.cpp +++ b/src/MaaCore/Task/Interface/InfrastTask.cpp @@ -133,7 +133,7 @@ bool asst::InfrastTask::set_params(const json::value& params) m_processing_task_ptr->set_mood_threshold(threshold); m_dorm_task_ptr->set_mood_threshold(threshold); - bool dorm_notstationed_enabled = params.get("dorm_notstationed_enabled", true); + bool dorm_notstationed_enabled = params.get("dorm_notstationed_enabled", false); m_dorm_task_ptr->set_notstationed_enabled(dorm_notstationed_enabled); bool dorm_trust_enabled = params.get("dorm_trust_enabled", false);