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;