cardboardbox/cmds_SharpBot/Utility/restart.js

11 lines
210 B
JavaScript

exports.run = async (bot, msg) => {
await msg.edit(':wave: Restarting. Bye!');
bot.shutdown(true);
};
exports.info = {
name: 'restart',
usage: 'restart',
description: 'Restarts the bot'
};