From 29b07827f8d48c4e8eb5385f58c777a1f8441787 Mon Sep 17 00:00:00 2001 From: "Labossiere-Hickman, Travis James" Date: Mon, 18 Mar 2024 20:02:58 -0600 Subject: [PATCH] Do not check tally triggers until one active interval has run. --- src/tallies/trigger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tallies/trigger.cpp b/src/tallies/trigger.cpp index c7f1b351fba..f8347254ad2 100644 --- a/src/tallies/trigger.cpp +++ b/src/tallies/trigger.cpp @@ -167,7 +167,7 @@ void check_triggers() // See if the current batch is one for which the triggers must be checked. if (!settings::trigger_on) return; - if (current_batch < n_batches) + if (current_batch <= n_batches) return; if (((current_batch - n_batches) % interval) != 0) return;