FridayNightFunkinBoyfriendBot/commands/lol.js

15 lines
352 B
JavaScript
Raw Normal View History

2024-02-13 12:11:00 -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'],
hashOnly:false,
consoleOnly:false,
execute (context) {
throw new CommandError('idfk lmao')
}
}