From 2b7c3052d4019d3fe53e34b139d9b6b44410994c Mon Sep 17 00:00:00 2001 From: Lea Date: Thu, 6 Apr 2023 13:25:29 +0200 Subject: [PATCH] don't delete health check message --- bot/src/bot/commands/misc/healthcheck.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/bot/src/bot/commands/misc/healthcheck.ts b/bot/src/bot/commands/misc/healthcheck.ts index 20fe35d..555b350 100644 --- a/bot/src/bot/commands/misc/healthcheck.ts +++ b/bot/src/bot/commands/misc/healthcheck.ts @@ -9,6 +9,5 @@ export default { category: CommandCategory.Misc, run: async (message: MessageCommandContext, args: string[]) => { const msg = await message.reply('Health check success: ' + args.join(' ')); - setTimeout(() => msg?.delete().catch(e => console.error), 5000); } } as SimpleCommand;