From f2d51e7276a3474ca193a6eda30b362225173a01 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sun, 7 Oct 2018 23:24:16 +0200 Subject: [PATCH] 54e656567 --- db.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/db.py b/db.py index 2829336d..d1eee60b 100644 --- a/db.py +++ b/db.py @@ -957,8 +957,9 @@ class Halloween(Base): started = False for h in halloweens: for i in range(7): - if h[i+1]: + if h.first_trigger: started = True + if h[i+1]: completed[i] = True return started, completed