From 6ebddbf9e0110d339359496718d67bfa21e392ad Mon Sep 17 00:00:00 2001 From: Matthew R Date: Sun, 29 Mar 2020 05:47:53 -0400 Subject: [PATCH] fix memory checking issue --- src/intervals/memory.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intervals/memory.ts b/src/intervals/memory.ts index 6492524..5677bc9 100644 --- a/src/intervals/memory.ts +++ b/src/intervals/memory.ts @@ -80,5 +80,5 @@ export default function memory(client: Client) { } catch (err) { client.util.handleError(err); } - }, 60000); + }, 30000); }