From 1fd2bc814f60d532ad18d396cd6a4652a217321a Mon Sep 17 00:00:00 2001 From: Migan178 Date: Sat, 2 Dec 2023 16:28:41 +0900 Subject: [PATCH] delete: botOff Command --- src/Commands/botOff.ts | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 src/Commands/botOff.ts diff --git a/src/Commands/botOff.ts b/src/Commands/botOff.ts deleted file mode 100644 index 1624385..0000000 --- a/src/Commands/botOff.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { Command } from '../modules' -import { type Message } from 'discord.js' - -export default class extends Command { - public constructor() { - super('봇꺼', true) - } - public execute(msg: Message, args: string[]) { - msg.channel.send('ㅇㅇ').finally(() => { - msg.client.destroy() - }) - } -}