이세린

minor fixes, ready to push

......@@ -2,8 +2,8 @@ const Discord = require('discord.js');
module.exports = {
name: 'breathe',
description: 'Embeds a gif',
execute(message, args, Discord){
description: 'Sends a breathing gif',
async run(client, message, args){
message.channel.send('https://images.squarespace-cdn.com/content/v1/5f6a71b620b6aa40a963641d/1609631567334-8E5V3K3WXD4PW4YWB0ZZ/6a-1575918606525.gif');
}
}
\ No newline at end of file
......
......@@ -8,13 +8,15 @@ module.exports = {
const subreddits = [
"aww",
"puppies",
"toebeans"
"toebeans",
"floof"
]
const random = subreddits[Math.floor(Math.random()*subreddits.length -1)];
const random = subreddits[Math.floor(Math.random()*subreddits.length)];
const img = await randomPuppy(random);
const cute = new Discord.MessageEmbed()
.setDescription("Some cute animals to blow away your anxieties!")
.setTitle('Huggable buddies')
.setDescription(`A buddy from r/${random} has come for the rescue!`)
.setColor('#91B2C7')
.setURL(`https://reddit.com/r/${random}`)
.setImage(img);
......