mirror of
https://github.com/ION606/selmerBot.git
synced 2026-05-15 05:36:54 +00:00
15 lines
589 B
JavaScript
15 lines
589 B
JavaScript
module.exports = {
|
|
name: "links",
|
|
description: "A helpful list of links to all of Selmer's wonderful websites",
|
|
execute(message, args, Discord, Client, bot) {
|
|
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] });
|
|
}
|
|
} |