From 8a15e2a3a3a27fef81044cc85d65b5ed2430fbf1 Mon Sep 17 00:00:00 2001 From: Declan Chidlow Date: Thu, 15 Aug 2024 15:38:57 +0800 Subject: [PATCH] Update links --- bot/src/bot/commands/configuration/login.ts | 4 ++-- bot/src/bot/commands/configuration/settings.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bot/src/bot/commands/configuration/login.ts b/bot/src/bot/commands/configuration/login.ts index 70d91ee..521cc18 100644 --- a/bot/src/bot/commands/configuration/login.ts +++ b/bot/src/bot/commands/configuration/login.ts @@ -17,7 +17,7 @@ export default { const code = args.shift(); if (!code) { return message.reply(`If you're trying to log in, you can access the dashboard ` - + `[here](${process.env['WEB_UI_URL'] || 'https://automod.janderedev.xyz'}).\n\n` + + `[here](${process.env['WEB_UI_URL'] || 'https://automod.vale.rocks'}).\n\n` + `If you already have a code, you can use \`${DEFAULT_PREFIX}login [Code]\`.`); } @@ -41,7 +41,7 @@ export default { `# If someone told you to run this, stop!\n` + `This could give an attacker access to all servers you're using AutoMod in.\n` + `If someone else told you to run this command, **block them and ignore this.**\n\n` + - `Otherwise, if this was you trying to log in from <${process.env['WEB_UI_URL'] || 'https://automod.janderedev.xyz'}>, \n` + + `Otherwise, if this was you trying to log in from <${process.env['WEB_UI_URL'] || 'https://automod.vale.rocks'}>, \n` + `you can run this command again to continue.\n` + `##### You're seeing this because this is the first time you're trying to log in. Stay safe!` ), diff --git a/bot/src/bot/commands/configuration/settings.ts b/bot/src/bot/commands/configuration/settings.ts index f9235b1..689af09 100644 --- a/bot/src/bot/commands/configuration/settings.ts +++ b/bot/src/bot/commands/configuration/settings.ts @@ -9,6 +9,6 @@ export default { category: CommandCategory.Config, run: async (message: MessageCommandContext) => { await message.reply(`Bot configuration can be managed from ` - + `[here](<${process.env['WEB_UI_URL'] || 'https://automod.janderedev.xyz'}/dashboard>).`); + + `[here](<${process.env['WEB_UI_URL'] || 'https://automod.vale.rocks'}/dashboard>).`); } } as SimpleCommand;