From a451f153bd4a0720a1c1b20d8d60dbaeefc39b5e Mon Sep 17 00:00:00 2001 From: Matthew R Date: Mon, 28 Oct 2019 00:26:14 -0400 Subject: [PATCH] Set interval time on checkLock --- src/functions/checkLock.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/functions/checkLock.ts b/src/functions/checkLock.ts index be1b924..5a2fdf7 100644 --- a/src/functions/checkLock.ts +++ b/src/functions/checkLock.ts @@ -39,10 +39,11 @@ export default function checkLock(client: Client) { }); // @ts-ignore client.createMessage('580950455581147146', { embed }); + client.signale.complete(`Unlocked account ${account.username} | Queue date at ${moderation.expiration.date.toLocaleString('en-us')}`); } }); } catch (error) { await client.util.handleError(error); } - }); + }, 10000); }