From 98e83f85b9253aa2c435e3ddcfbb37194d12212a Mon Sep 17 00:00:00 2001 From: Lucas Gabriel Date: Mon, 14 Oct 2024 13:09:57 -0300 Subject: [PATCH] Update crash command --- commands/crew.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/crew.js b/commands/crew.js index 60662eb..265c5f5 100644 --- a/commands/crew.js +++ b/commands/crew.js @@ -197,7 +197,7 @@ module.exports = (bot) => { bot.command('crash', (ctx) => { handleAdminCommand(ctx, async () => { - throw new Error('This is a forced crash!'); + ctx.reply(null); }, '', "Nope!"); }); };