diff --git a/model/Clinical/CMDecisionTree.cpp b/model/Clinical/CMDecisionTree.cpp index 64a228b9..c201a8fc 100644 --- a/model/Clinical/CMDecisionTree.cpp +++ b/model/Clinical/CMDecisionTree.cpp @@ -367,7 +367,7 @@ class CMDTReport : public CMDecisionTree { for( const size_t outId : outIds ){ mon::reportEventMHI_CMDT( mon::MCD_CMDT_REPORT, hostData.human, 1, outId); } - return CMDTOut(true); + return CMDTOut(false); } private: vector outIds; @@ -530,7 +530,7 @@ class CMDTDeploy : public CMDecisionTree, interventions::HumanIntervention { //NOTE: it's not intuitively obvious what value should be returned here // in the case of intervention deployment. This at least means that // repeat seekers get second-line treatment. - return CMDTOut(true); + return CMDTOut(false); } };