From c257dd13cca1ed9cde38a462b14c79889f397876 Mon Sep 17 00:00:00 2001 From: xfnw Date: Mon, 13 Jul 2020 17:16:24 +0000 Subject: [PATCH] omg how tf did i mess up this hard --- modules/nlp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nlp.py b/modules/nlp.py index 5d77c34..86fcf55 100644 --- a/modules/nlp.py +++ b/modules/nlp.py @@ -79,7 +79,7 @@ async def filter(self, c, n, m): await go(self, c, n, m) else: if len(m.split(' ')) > 1: - if self.learntime + self.learndelay > time.time(): + if self.learntime + self.learndelay < time.time(): await rec(self, m) self.learntime = time.time()