owobot/plugins/commands/help.js

10 lines
211 B
JavaScript
Raw Normal View History

2024-07-06 11:02:11 -04:00
module.exports={
execute: (c)=>{
if(c.args.length>0){
c.bot.printCmdHelp(c.uuid,c.args[0],c.lang);
2024-07-06 11:02:11 -04:00
} else {
c.bot.printHelp(c.uuid,c.prefix,c.lang);
2024-07-06 11:02:11 -04:00
}
}
2024-07-06 11:02:11 -04:00
}