mrmBot-Matrix/commands/general/restart.js

18 lines
556 B
JavaScript

import Command from "../../classes/command.js";
class RestartCommand extends Command {
async run() {
const owners = process.env.OWNER.split(",");
if (!owners.includes(this.author.id)) return "Only the bot owner can restart me!";
await this.client.createMessage(this.channel.id, Object.assign({
content: "esmBot is restarting."
}, this.reference));
this.ipc.restartAllClusters(true);
//this.ipc.broadcast("restart");
}
static description = "Restarts me";
static aliases = ["reboot"];
}
export default RestartCommand;