2022-02-17 22:18:51 -05:00
|
|
|
module.exports = {
|
|
|
|
|
name: "links",
|
|
|
|
|
description: "A helpful list of links to all of Selmer's wonderful websites",
|
2022-09-27 16:45:50 -04:00
|
|
|
execute(interaction, Discord, Client, bot) {
|
2022-02-17 22:18:51 -05:00
|
|
|
const newEmbed = new Discord.MessageEmbed()
|
|
|
|
|
.setColor('#002eff')
|
|
|
|
|
.setTitle("Selmer's Links")
|
|
|
|
|
.addFields(
|
|
|
|
|
{name: 'HyperGrader', value: "https://rpi.logicamodernapproach.com/"},
|
2022-09-27 16:45:50 -04:00
|
|
|
{name: 'Personal Website', value: "http://www.logicamodernapproach.com/"}
|
2022-02-17 22:18:51 -05:00
|
|
|
);
|
|
|
|
|
|
2022-09-27 16:45:50 -04:00
|
|
|
interaction.reply({ embeds: [newEmbed] });
|
|
|
|
|
}, options: []
|
2022-02-17 22:18:51 -05:00
|
|
|
}
|