From e763b4c8110255c8ac049dcfa808805fa1a33ec1 Mon Sep 17 00:00:00 2001 From: Auric Vente Date: Sat, 20 Jul 2024 05:43:55 -0600 Subject: [PATCH] Mods --- cromulant/ants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cromulant/ants.py b/cromulant/ants.py index 937fcc8..77dec3b 100644 --- a/cromulant/ants.py +++ b/cromulant/ants.py @@ -159,7 +159,7 @@ class Ants: now = Utils.now() mins = 10 * 60 # Filter ants where updated is older than 10 minutes - ants = [a for a in Ants.ants if (now - a.updated) > mins] + ants = [a for a in Ants.ants if (now - a.updated) >= mins] if not len(ants): ants = Ants.ants