Skip to content

Commit ba6bae3

Browse files
authored
Fix button URLs in bot command
Updated button URLs for invite, vote, and GitHub.
1 parent d51d043 commit ba6bae3

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

src/commands/info/bot.ts

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -48,25 +48,19 @@ ${bot.description}
4848
.setStyle(Discord.ButtonStyle.Link)
4949
.setEmoji("🔗")
5050
.setLabel("Invite")
51-
.setURL("https://wdh.gg/reminders"),
52-
53-
new Discord.ButtonBuilder()
54-
.setStyle(Discord.ButtonStyle.Link)
55-
.setEmoji("🆘")
56-
.setLabel("Support")
57-
.setURL("https://wdh.gg/reminders/support"),
51+
.setURL(`https://discord.com/oauth2/authorize?client_id=${client.user?.id}`),
5852

5953
new Discord.ButtonBuilder()
6054
.setStyle(Discord.ButtonStyle.Link)
6155
.setEmoji("🗳️")
6256
.setLabel("Vote")
63-
.setURL("https://wdh.gg/reminders/vote"),
57+
.setURL(`https://top.gg/bot/${client.user?.id}/vote`),
6458

6559
new Discord.ButtonBuilder()
6660
.setStyle(Discord.ButtonStyle.Link)
6761
.setEmoji("🐙")
6862
.setLabel("GitHub")
69-
.setURL("https://wdh.gg/reminders/github")
63+
.setURL("https://github.com/wdhdev/reminders")
7064
);
7165

7266
await interaction.editReply({

0 commit comments

Comments
 (0)