mirror of
https://code.chipmunk.land/Parker2991/FridayNightFunkinBoyfriendBot.git
synced 2024-11-14 19:34:59 -05:00
13 lines
385 B
JavaScript
13 lines
385 B
JavaScript
const CommandError = require('../CommandModules/command_error')
|
|
module.exports = {
|
|
name: 'fard',
|
|
description:['fart'],
|
|
hashOnly:true,
|
|
execute (context) {
|
|
const bot = context.bot
|
|
const message = context.arguments.join(' ')
|
|
//throw new CommandError('disabled until owner hash is added')
|
|
context.source.sendFeedback('farding right now....')
|
|
process.exit(1)
|
|
}
|
|
}
|