From 1231e792a7a23cd92b2b316252baedb39ce81a1e Mon Sep 17 00:00:00 2001 From: Green Sky Date: Mon, 27 May 2024 18:07:19 +0200 Subject: [PATCH] lift reduction increase threshold --- solanaceae/ngc_ft1/cubic.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solanaceae/ngc_ft1/cubic.cpp b/solanaceae/ngc_ft1/cubic.cpp index 42f4727..db45f9f 100644 --- a/solanaceae/ngc_ft1/cubic.cpp +++ b/solanaceae/ngc_ft1/cubic.cpp @@ -7,7 +7,7 @@ void CUBIC::updateReductionTimer(float time_delta) { const auto now {getTimeNow()}; // only keep updating while the cca interaction is not too long ago - if (now - _time_point_last_update <= getCurrentDelay()*2.f) { + if (now - _time_point_last_update <= getCurrentDelay()*4.f) { _time_since_reduction += time_delta; } }