FridayNightFunkinBoyfriendBot/commands/filter.js
2024-02-20 17:17:43 +00:00

15 lines
285 B
JavaScript

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