b959bdf2af
To restart the bot.
10 lines
250 B
JavaScript
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
|
|
}
|