Added the 'links' command

This commit is contained in:
ION606
2022-02-17 22:18:51 -05:00
parent 05d4d5e997
commit b56025e4f4
3 changed files with 23 additions and 6 deletions
+15
View File
@@ -0,0 +1,15 @@
module.exports = {
name: "links",
description: "A helpful list of links to all of Selmer's wonderful websites",
execute(message, args, Discord) {
const newEmbed = new Discord.MessageEmbed()
.setColor('#002eff')
.setTitle("Selmer's Links")
.addFields(
{name: 'HyperGrader', value: "https://rpi.logicamodernapproach.com/"},
{name: 'Personal Website', value: "http://www.logicamodernapproach.com/rpi/intlogs22.bringsjord/#sec-3"}
);
message.channel.send({ embeds: [newEmbed] });
}
}