owobot/plugins/commands/help.js
2024-07-28 02:37:31 -04:00

12 lines
264 B
JavaScript

module.exports = {
execute: (c) => {
if (c.args.length > 0) {
c.bot.printCmdHelp(c.uuid, c.args[0], c.lang, c.colors)
} else {
c.bot.printHelp(c.uuid, c.prefix, c.lang, c.colors)
}
},
aliases: [
'heko' // Parker2991 request
]
}