Skip to content
This repository has been archived by the owner on Dec 9, 2022. It is now read-only.

Commit

Permalink
🌐 Fix links
Browse files Browse the repository at this point in the history
  • Loading branch information
jaspermayone committed Jun 26, 2022
1 parent c3a4b24 commit 7c4c4b0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/commands/subcommands/heptagram/handleAbout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ export const handleAbout: CommandHandler = async (Heptagram, interaction) => {
const supportServerButton = new MessageButton()
.setLabel("Support Server")
.setStyle("LINK")
.setURL("https://discord.heptagrambotproject.com");
.setURL("https://links.heptagrambotproject.com/discord");
const inviteButton = new MessageButton()
.setLabel("Invite Heptagram")
.setStyle("LINK")
.setURL("https://invite.heptagrambotproject.com");
.setURL("https://links.heptagrambotproject.com/invite");
const codeButton = new MessageButton()
.setLabel("GitHub Repository")
.setStyle("LINK")
Expand Down
2 changes: 1 addition & 1 deletion src/commands/subcommands/heptagram/handleContact.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const handleContact: CommandHandler = async (Heptagram, interaction) => {
const discordButton = new MessageButton()
.setStyle("LINK")
.setLabel("Discord")
.setURL("https://discord.heptagrambotproject.com");
.setURL("https://links.heptagrambotproject.com/discord");
const githubButton = new MessageButton()
.setStyle("LINK")
.setLabel("GitHub")
Expand Down
4 changes: 2 additions & 2 deletions src/commands/subcommands/heptagram/handleHelp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ export const handleHelp: CommandHandler = async (Heptagram, interaction) => {
const supportServerButton = new MessageButton()
.setLabel("Support Server")
.setStyle("LINK")
.setURL("https://discord.heptagrambotproject.com");
.setURL("https://links.heptagrambotproject.com/discord");
const inviteButton = new MessageButton()
.setLabel("Invite Heptagram")
.setStyle("LINK")
.setURL("https://invite.heptagrambotproject.com");
.setURL("https://links.heptagrambotproject.com/invite");
const codeButton = new MessageButton()
.setLabel("Source Code")
.setStyle("LINK")
Expand Down
2 changes: 1 addition & 1 deletion src/commands/subcommands/heptagram/handleInvite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const handleInvite: CommandHandler = async (Heptagram, interaction) => {
const inviteButton = new MessageButton()
.setLabel("Invite Heptagram")
.setStyle("LINK")
.setURL("https://invite.heptagrambotproject.com");
.setURL("https://links.heptagrambotproject.com/invite");

const row = new MessageActionRow().addComponents([inviteButton]);

Expand Down

0 comments on commit 7c4c4b0

Please sign in to comment.