From 0aa9c09fe7a5319b54147ac020ebe8f00bac7b9b Mon Sep 17 00:00:00 2001 From: artie Date: Mon, 24 Feb 2025 16:04:10 +0100 Subject: [PATCH] add isdown alias --- src/commands/utility/isdown.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/utility/isdown.ts b/src/commands/utility/isdown.ts index 68282a9..59e4c7e 100644 --- a/src/commands/utility/isdown.ts +++ b/src/commands/utility/isdown.ts @@ -9,7 +9,7 @@ import { FAKE_USER_AGENT } from "../../utils/constants"; export default defineCommand({ data: new SlashCommandBuilder() .setName("isdown") - .setDescription("URL healthcheck") + .setDescription("URL healthcheck (isup)") .addStringOption(option => option.setName("url").setDescription("The URL to check").setRequired(true) ),