2023-12-17 14:55:27 -05:00
|
|
|
//command.unknown.argument command.unknown.command //command.context.here
|
|
|
|
const CommandError = require('../CommandModules/command_error')
|
|
|
|
const os = require('os')
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
name: 'lol',
|
|
|
|
description:['idfk dont ask'],
|
|
|
|
aliases:['ohio'],
|
2023-12-20 11:54:03 -05:00
|
|
|
trustLevel: 0,
|
2023-12-17 14:55:27 -05:00
|
|
|
execute (context) {
|
|
|
|
throw new CommandError('idfk lmao')
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|