This commit is contained in:
Alex 2020-06-18 11:48:13 -05:00
parent d82de68c70
commit 03a9b72247
1 changed files with 18 additions and 9 deletions

View File

@ -238,25 +238,34 @@ client.on("message", async message => {
/////////Funny DHS is funny/////////// /////////Funny DHS is funny///////////
////////////////////////////////////// //////////////////////////////////////
if (command == "xkcd") { if (command == "xkcd") {
let comic = ""
if (!isNaN(args[0])) { if (!isNaN(args[0])) {
fetch(`https://xkcd.com/${args[0]}/info.0.json`) fetch(`https://xkcd.com/${args[0]}/info.0.json`)
.then(res => res.json()) .then(res => res.json())
.then(json => let comic = json) .then(json => comic = json)
// eslint-disable-next-line no-unused-vars
.catch(err => message.reply("Something went wrong... Check your number and try again later.")); .catch(err => message.reply("Something went wrong... Check your number and try again later."));
let embed = new Discord.MessageEmbed() let embed = new Discord.MessageEmbed()
.setTitle(`xkcd #${arg[0]}`) .setTitle(`xkcd #${args[0]}`)
.setAuthor("Randel Munroe") .setAuthor("Randel Munroe")
.setColor(0xffffff) .setColor(0xffffff)
.setDescription(``); .image(`${comic.img}`);
return message.channel.send(embed);
}
fetch(`https://xkcd.com/info.0.json`)
.then(res => res.json())
.then(json => comic = json)
// eslint-disable-next-line no-unused-vars
.catch(err => message.reply("Something went wrong... Check your number and try again later."));
let embed = new Discord.MessageEmbed()
.setTitle(`xkcd #${args[0]}`)
.setAuthor("Randel Munroe")
.setColor(0xffffff)
.image(`${comic.img}`);
return message.channel.send(embed); return message.channel.send(embed);
} }
}
}
}); });
if(process.argv.slice(2).includes("--TEST")) { if(process.argv.slice(2).includes("--TEST")) {