owobot/plugins/commands/stop.js
7cc5c4f330d47060 b959bdf2af Add "stop command
To restart the bot.
2024-07-16 10:06:31 -04:00

10 lines
250 B
JavaScript

module.exports={
execute: (c)=>{
if(c.type!=console) return;
process.exit(0);
},
desc: "Restart bot", // Command description
usage: ' <required> [optional]', // Command usage
hidden: true,
consoleIndex: true
}