la-cosa-nostra
Version:
A Mafia bot designed to run in Discord - beware the traitors and the lies!
19 lines (11 loc) • 319 B
JavaScript
var logger = process.logger;
module.exports = async function (message, params, config) {
await message.channel.send(":computer: Shutting down...");
var client = message.client;
client.user.setPresence({
status: 'offline'
});
client.destroy();
logger.log(2, "Bot shut down");
process.exit();
};