18 lines
No EOL
644 B
JavaScript
18 lines
No EOL
644 B
JavaScript
import Command from "../../classes/command.js";
|
|
|
|
class ImageReloadCommand extends Command {
|
|
async run() {
|
|
if (this.message.author.id !== process.env.OWNER) return "Only the bot owner can reload the image servers!";
|
|
const amount = await this.ipc.command("image", { type: "reload" }, true);
|
|
if (amount > 0) {
|
|
return `Successfully connected to ${amount} image servers.`;
|
|
} else {
|
|
return "I couldn't connect to any image servers!";
|
|
}
|
|
}
|
|
|
|
static description = "Attempts to reconnect to all available image processing servers";
|
|
static aliases = ["magickconnect", "magick"];
|
|
}
|
|
|
|
export default ImageReloadCommand; |