From e26803a17c9eb637a68099d80bdd8291794c66f4 Mon Sep 17 00:00:00 2001 From: janderedev Date: Wed, 16 Mar 2022 21:58:25 +0100 Subject: [PATCH] who put a timeout here --- bot/src/bot/commands/test.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bot/src/bot/commands/test.ts b/bot/src/bot/commands/test.ts index e62788f..3e02406 100644 --- a/bot/src/bot/commands/test.ts +++ b/bot/src/bot/commands/test.ts @@ -1,5 +1,4 @@ import Command from "../../struct/Command"; -import { Message } from "@janderedev/revolt.js/dist/maps/Messages"; import MessageCommandContext from "../../struct/MessageCommandContext"; export default { @@ -8,6 +7,6 @@ export default { description: 'Test command', category: 'misc', run: (message: MessageCommandContext, args: string[]) => { - setTimeout(() => message.reply('Beep boop.'), 1000); + message.reply('Beep boop.'); } } as Command;