owobot/plugins/commands/help.js

13 lines
264 B
JavaScript
Raw Normal View History

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
]
2024-07-27 02:39:18 -04:00
}