16 lines
285 B
JavaScript
16 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
|
||
|
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|