From fa77f8427650f99cd409a28594e2b2b84ef47cff Mon Sep 17 00:00:00 2001 From: William Harrison Date: Mon, 22 Jul 2024 10:44:57 +0800 Subject: [PATCH] update links --- src/commands/info/bot.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/commands/info/bot.ts b/src/commands/info/bot.ts index 79509bb..6efd7a9 100644 --- a/src/commands/info/bot.ts +++ b/src/commands/info/bot.ts @@ -32,25 +32,25 @@ const command: Command = { .setStyle(Discord.ButtonStyle.Link) .setEmoji("🔗") .setLabel("Invite") - .setURL("https://remindersbot.xyz"), + .setURL("https://wdh.gg/reminders"), new Discord.ButtonBuilder() .setStyle(Discord.ButtonStyle.Link) .setEmoji("🆘") .setLabel("Support") - .setURL("https://remindersbot.xyz/support"), + .setURL("https://wdh.gg/reminders/support"), new Discord.ButtonBuilder() .setStyle(Discord.ButtonStyle.Link) .setEmoji("🗳️") .setLabel("Vote") - .setURL("https://remindersbot.xyz/vote"), + .setURL("https://wdh.gg/reminders/vote"), new Discord.ButtonBuilder() .setStyle(Discord.ButtonStyle.Link) .setEmoji("🐙") .setLabel("GitHub") - .setURL("https://remindersbot.xyz/github") + .setURL("https://wdh.gg/reminders/github") ) await interaction.editReply({ embeds: [info], components: [buttons] });