diff --git a/commands/crew.js b/commands/crew.js index b18b0d6..7f8c464 100644 --- a/commands/crew.js +++ b/commands/crew.js @@ -194,4 +194,10 @@ module.exports = (bot) => { }); }, '', "Nope!"); }); + + bot.command('crash', (ctx) => { + handleAdminCommand(ctx, async () => { + throw new Error('This is a forced crash!'); + }, '', "Nope!"); + }); };