FridayNightFunkinBoyfriendBot/commands/filter.js

16 lines
325 B
JavaScript
Raw Normal View History

2023-12-17 14:55:27 -05:00
const CommandError = require('../CommandModules/command_error')
module.exports = {
name: 'filter',
2023-12-20 11:54:03 -05:00
trustLevel: 1,
2023-12-17 14:55:27 -05:00
description:['filter players (not functional)'],
execute (context) {
//throw new CommandError('temp disabled')
const target = context.arguments.join(' ')
const bot = context.bot
}
}