FridayNightFunkinBoyfriendBot/commands/errortest.js

14 lines
366 B
JavaScript
Raw Normal View History

2024-02-13 12:11:00 -05:00
const CommandError = require('../CommandModules/command_error')
module.exports = {
name: 'errortest',
description:['test errors'],
hashOnly:false,
consoleOnly:false,
execute (context) {
const message = context.arguments.join(' ')
//context.source.sendFeedback('hint hover your mouse over the error')
throw new Error(message)
}
}