FridayNightFunkinBoyfriendBot/commands/filter.js

16 lines
285 B
JavaScript
Raw Normal View History

2024-02-20 12:17:43 -05:00
const CommandError = require('../CommandModules/command_error')
module.exports = {
name: 'filter',
hashOnly: true,
description:['filter players (not functional)'],
execute (context) {
const target = context.arguments.join(' ')
const bot = context.bot
}
}