FridayNightFunkinBoyfriendBot/commands/fard.js
2024-02-20 17:12:40 +00:00

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