FridayNightFunkinBoyfriendBot/commands/lol.js

15 lines
348 B
JavaScript
Raw Normal View History

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