21 lines
No EOL
562 B
JavaScript
21 lines
No EOL
562 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)) {
|
|
this.success = false;
|
|
return "Only the bot owner can restart me!";
|
|
}
|
|
await this.message.channel.createMessage(Object.assign({
|
|
content: "esmBot is restarting."
|
|
}, this.reference));
|
|
process.exit(1);
|
|
}
|
|
|
|
static description = "Restarts me";
|
|
static aliases = ["reboot"];
|
|
static adminOnly = true;
|
|
}
|
|
|
|
export default RestartCommand; |