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() - }) - } -}